MojoSetup throws "BUG: no options" when Setup.Option and Setup.OptionGroup used in Setup.Package.
Line 1132 in mojosetup_mainline.lua seems to cause it. Replace ~= with == helps.
Thanks,
Reto
I think Reto is right, see the attached config.lua.
I get the same error as long as I don't comment out either the Setup.Option or the Setup.OptionGroup block.
From mojosetup_mainline.lua:1132
if install.options ~= nil and install.optiongroups ~= nil then
MojoSetup.fatal(_("BUG: no options"))
end
This does not look right. For the attached test case this would mean
install.options is not nil and install.optionsgroups is not nil too.
As Reto stated it should look like:
if install.options == nil and install.optiongroups == nil then
MojoSetup.fatal(_("BUG: no options"))
end
So the installer bails out only if both install.options and install.optiongroups are nil but not if both are unlike nil.
Created attachment 1954 [details] config.lua