diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2023-06-19 18:11:59 -0400 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2023-06-19 18:11:59 -0400 |
commit | 2eabb4ccab83ce051bd2be53877cc0ad9d295645 (patch) | |
tree | bc5e10304172336a98a853232f2d7b5d1f8c5310 | |
parent | c8adef79c6a531de7867c2be6dd2fcd884df69be (diff) | |
download | lite-xl-plugin-manager-2eabb4ccab83ce051bd2be53877cc0ad9d295645.tar.gz lite-xl-plugin-manager-2eabb4ccab83ce051bd2be53877cc0ad9d295645.zip |
Removed debug statemet.
-rw-r--r-- | src/lpm.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lpm.lua b/src/lpm.lua index ef14b74..6aefc9a 100644 --- a/src/lpm.lua +++ b/src/lpm.lua @@ -2221,8 +2221,6 @@ not commonly used publically. if BINARY and not system.stat(BINARY) then error("can't find specified --binary") end if DATADIR and not system.stat(DATADIR) then error("can't find specified --datadir") end local lite_xl_binary = BINARY or common.path("lite-xl" .. EXECUTABLE_EXTENSION) - print("BINRAY", lite_xl_binary) - os.exit(0) if lite_xl_binary then local stat = system.stat(lite_xl_binary) if not stat then error("can't find lite-xl binary " .. lite_xl_binary) end |