builder.sh: check if variable is non null

This is not the "correct" way to check if a variable is non null in
bash. There is already an instance of the "right" way to do it in
setup.sh. Bash is "generous" enough to accept the original input though.
I couldn't find the relevant shellcheck.
This commit is contained in:
happysalada 2021-06-22 09:59:52 +09:00 committed by Raphael Megzari
parent e39ee04d97
commit 40ad05b4cb

View file

@ -18,6 +18,6 @@ mkdir "$out"
# Allow the user to install stdenv using nix-env and get the packages
# in stdenv.
mkdir $out/nix-support
if [ "$propagatedUserEnvPkgs" ]; then
if [ -n "${propagatedUserEnvPkgs:-}" ]; then
printf '%s ' $propagatedUserEnvPkgs > $out/nix-support/propagated-user-env-packages
fi