diff --git a/pkgs/build-support/setup-hooks/add-bin-to-path.sh b/pkgs/build-support/setup-hooks/add-bin-to-path.sh index 308c2706fd05..375a544dc6a4 100644 --- a/pkgs/build-support/setup-hooks/add-bin-to-path.sh +++ b/pkgs/build-support/setup-hooks/add-bin-to-path.sh @@ -5,10 +5,8 @@ export PATH addBinToPath () { # shellcheck disable=SC2154 - if [ -d "$out/bin" ]; then - PATH="$out/bin:$PATH" - export PATH - fi + PATH="$out/bin:$PATH" + export PATH } # shellcheck disable=SC2154