Skip to content
Snippets Groups Projects
Verified Commit bde3c37f authored by Karel Koci's avatar Karel Koci :metal:
Browse files

lists/bootstrap: fix invalid inclusion of package lists

Package lists name should not contain .lua as it is appended later on.
parent 73add5dd
No related branches found
No related tags found
2 merge requests!377Turris OS 5.2 (HBK),!242lists/bootstrap: fix invalid inclusion of package lists
......@@ -33,7 +33,7 @@ Script('base.lua')
local env_pkglists = os.getenv('PKGLISTS')
if env_pkglists then
for list in env_pkglists:gmatch('[^,]+') do
local list_name = list:match('^[^(]+') .. ".lua"
local list_name = list:match('^[^(]+')
local list_options = list:match('%((.*)%)$')
options = {}
Export("options")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment