Skip to content
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

Fix crash when sourcing pre-build init.sh #820

Merged
merged 1 commit into from
Dec 12, 2023

Commits on Dec 12, 2023

  1. Fix crash when sourcing pre-build init.sh

    If the last line in init.sh would load a package that was already loaded, [ -z
    ... ] returns false, which would mean the entire script's exit code is false,
    and the build would fail.
    
    Fix this, so that the expression always returns true (either if the package is
    already loaded or if it is loaded by the line in question).
    TimoWilken committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    287b1b4 View commit details
    Browse the repository at this point in the history