diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2024-03-09 14:17:45 -0500 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2024-03-09 14:17:45 -0500 |
commit | 241f139643989d10691a1dee4301cbaa410b3942 (patch) | |
tree | cabbecb68a068b4a5f3959ed635037712aa0af22 /src/lpm.lua | |
parent | 16950e6de6547e73f03f167ed8c401aeb818aa9a (diff) | |
download | lite-xl-plugin-manager-241f139643989d10691a1dee4301cbaa410b3942.tar.gz lite-xl-plugin-manager-241f139643989d10691a1dee4301cbaa410b3942.zip |
Changed to PATHSEP, from comma.
Diffstat (limited to 'src/lpm.lua')
-rw-r--r-- | src/lpm.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lpm.lua b/src/lpm.lua index 064190a..82925e5 100644 --- a/src/lpm.lua +++ b/src/lpm.lua @@ -2465,7 +2465,7 @@ not commonly used publically. end end - for i,v in ipairs(common.concat(ARGS["plugin"] or {}, { common.split(",", os.getenv("LPM_PLUGINS") or "") })) do + for i,v in ipairs(common.concat(ARGS["plugin"] or {}, { common.split(":", os.getenv("LPM_PLUGINS") or "") })) do if v ~= "" then local env = { EXECUTABLE_EXTENSION = EXECUTABLE_EXTENSION, SHOULD_COLOR = SHOULD_COLOR, HOME = HOME, USERDIR = USERDIR, CACHEDIR = CACHEDIR, JSON = JSON, TABLE = TABLE, HEADER = HEADER, RAW = RAW, VERBOSE = VERBOSE, FILTRATION = FILTRATION, MOD_VERSION = MOD_VERSION, QUIET = QUIET, FORCE = FORCE, REINSTALL = REINSTALL, CONFIG = CONFIG, NO_COLOR = NO_COLOR, AUTO_PULL_REMOTES = AUTO_PULL_REMOTES, ARCH = ARCH, ASSUME_YES = ASSUME_YES, NO_INSTALL_OPTIONAL = NO_INSTALL_OPTIONAL, TMPDIR = TMPDIR, DATADIR = DATADIR, BINARY = BINARY, POST = POST, PROGRESS = PROGRESS, SYMLINK = SYMLINK, REPOSITORY = REPOSITORY, EPHEMERAL = EPHEMERAL, MASK = MASK, |