diff options
author | Adam <adamdharrison@gmail.com> | 2022-10-21 21:56:45 -0400 |
---|---|---|
committer | Adam <adamdharrison@gmail.com> | 2022-10-21 21:56:45 -0400 |
commit | 49bae736fc589a4a82cfeab1e73e3a9db650f190 (patch) | |
tree | cb652044ebaa287234a21388fef7e054288d16c5 /src/lpm.lua | |
parent | 7a4896c3b3d2f41cda46959c25c1c7e13e79e116 (diff) | |
download | lite-xl-plugin-manager-49bae736fc589a4a82cfeab1e73e3a9db650f190.tar.gz lite-xl-plugin-manager-49bae736fc589a4a82cfeab1e73e3a9db650f190.zip |
Made sure to fetch all tags.
Diffstat (limited to 'src/lpm.lua')
-rw-r--r-- | src/lpm.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lpm.lua b/src/lpm.lua index c0752f0..238d5f9 100644 --- a/src/lpm.lua +++ b/src/lpm.lua @@ -1574,7 +1574,8 @@ Flags have the following effects: local hash = system.hash(lite_xl_binary, "file") local system_lite_xl = common.first(common.concat(common.flat_map(repositories, function(r) return r.lite_xls end), lite_xls), function(lite_xl) return lite_xl.local_path == directory end) if not system_lite_xl then - if #common.grep(lite_xls, function(e) return e.version == "system" end) > 0 then error("can't create new system lite, please `lpm rm lite-xl system`, or resolve otherwise") end + system_lite_xl = common.first(lite_xls, function(e) return e.version == "system" end) + if system_lite_xl then error("can't find existing system lite (does " .. system_lite_xl.local_path .. " exist? was it moved?); run `lpm purge`, or resolve otherwise") end system_lite_xl = LiteXL.new(nil, { path = directory, mod_version = 3, version = "system", tags = { "system", "local" } }) table.insert(lite_xls, system_lite_xl) lpm_lite_xl_save() |