From 636fbcf54ef09eae0f5423ee9e6b326f7269c297 Mon Sep 17 00:00:00 2001 From: Adam Harrison Date: Fri, 29 Mar 2024 11:49:44 -0400 Subject: Changed separator to , from :, due to URLs. Sigh. --- src/lpm.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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) -- cgit v1.2.3