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).
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).