We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
No need for fancy things, just a simple flag that can be passed to the build script: unixbuild.sh debug (and default to release)
unixbuild.sh debug
release
It's trivial to detect this in Lua (global arg) and then swap in a few different flags (if preset == "debug" then ...).
arg
if preset == "debug" then ...
The text was updated successfully, but these errors were encountered:
Instead of hacking even more complex logic into what's supposed to be a tiny utility script, maybe there's a simpler way:
debug.env
release.env
custom.env
It's possible there are some limitations that I didn't think about, but it's promising enough to warrant some experimentation.
Sorry, something went wrong.
No branches or pull requests
No need for fancy things, just a simple flag that can be passed to the build script:
unixbuild.sh debug
(and default torelease
)It's trivial to detect this in Lua (global
arg
) and then swap in a few different flags (if preset == "debug" then ...
).The text was updated successfully, but these errors were encountered: