-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
attempt to call global 'require' (a nil value) #51
Comments
This project uses loadconf to execute the This is related to issue #27 and #49. If you want to provide a if love.filesystem then
--This is LÖVE
end |
I don't have a config for love-release. Here is my conf.lua: https://github.com/egordorichev/neko8/blob/master/conf.lua It was running ok, but something happened and it broke. Debian package building was broken all time. |
love-release tries to load Try to do something like if not require then --Detect that this isn't LÖVE but love-release
love.conf = function () end
else
--Your code goes here
end |
Oh, that works. Thank you :) |
The text was updated successfully, but these errors were encountered: