aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2023-06-19 18:11:59 -0400
committerAdam Harrison <adamdharrison@gmail.com>2023-06-19 18:11:59 -0400
commit2eabb4ccab83ce051bd2be53877cc0ad9d295645 (patch)
treebc5e10304172336a98a853232f2d7b5d1f8c5310
parentc8adef79c6a531de7867c2be6dd2fcd884df69be (diff)
downloadlite-xl-plugin-manager-2eabb4ccab83ce051bd2be53877cc0ad9d295645.tar.gz
lite-xl-plugin-manager-2eabb4ccab83ce051bd2be53877cc0ad9d295645.zip
Removed debug statemet.
-rw-r--r--src/lpm.lua2
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