diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2024-03-29 11:49:44 -0400 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2024-03-29 11:49:44 -0400 |
commit | 636fbcf54ef09eae0f5423ee9e6b326f7269c297 (patch) | |
tree | 75469b4dc6494272f423ae6d1e16a038fb488bd0 /src | |
parent | 6fa5bb7b3fb6f9bb11f0f0a21f24de8376345880 (diff) | |
download | lite-xl-plugin-manager-636fbcf54ef09eae0f5423ee9e6b326f7269c297.tar.gz lite-xl-plugin-manager-636fbcf54ef09eae0f5423ee9e6b326f7269c297.zip |
Changed separator to , from :, due to URLs. Sigh.
Diffstat (limited to 'src')
-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 9217282..3dc06fa 100644 --- a/src/lpm.lua +++ b/src/lpm.lua @@ -2518,7 +2518,7 @@ not commonly used publically. settings = settings, repositories = repositories, lite_xls = lite_xls, system_bottle = system_bottle, progress_bar_label = progress_bar_label, write_progress_bar = write_progress_bar }, { __index = _G, __newindex = function(t, k, v) _G[k] = v end }) - for i,v in ipairs(common.concat(ARGS["plugin"] or {}, { common.split(":", os.getenv("LPM_PLUGINS") or "") }, lpm_plugins)) do + for i,v in ipairs(common.concat(ARGS["plugin"] or {}, { common.split(",", os.getenv("LPM_PLUGINS") or "") }, lpm_plugins)) do if v ~= "" then local contents = v:find("^https?://") and common.get(v) or common.read(v) local func, err = load(contents, v, "bt", env) |