summary refs log tree commit diff
path: root/pkgs/stdenv
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2021-06-22 09:57:21 +0900
committerRaphael Megzari <raphael@megzari.com>2021-07-06 09:27:18 +0900
commit4d0e3984918b30459103ed78551dc22409a07b24 (patch)
tree0c622e9c6169bdfd413ecaa8e5e19239902a5eb0 /pkgs/stdenv
parent3ddb8d5a7955eea6367d43b35e9f47e79361419f (diff)
downloadnixpkgs-4d0e3984918b30459103ed78551dc22409a07b24.tar
nixpkgs-4d0e3984918b30459103ed78551dc22409a07b24.tar.gz
nixpkgs-4d0e3984918b30459103ed78551dc22409a07b24.tar.bz2
nixpkgs-4d0e3984918b30459103ed78551dc22409a07b24.tar.lz
nixpkgs-4d0e3984918b30459103ed78551dc22409a07b24.tar.xz
nixpkgs-4d0e3984918b30459103ed78551dc22409a07b24.tar.zst
nixpkgs-4d0e3984918b30459103ed78551dc22409a07b24.zip
builder.sh: shellcheck 2086
https://github.com/koalaman/shellcheck/wiki/SC2086
Diffstat (limited to 'pkgs/stdenv')
-rw-r--r--pkgs/stdenv/generic/builder.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/stdenv/generic/builder.sh b/pkgs/stdenv/generic/builder.sh
index 79bf21ab473..1cf08b0720d 100644
--- a/pkgs/stdenv/generic/builder.sh
+++ b/pkgs/stdenv/generic/builder.sh
@@ -4,7 +4,7 @@ for i in $initialPath; do
     PATH=$PATH${PATH:+:}$i/bin
 done
 
-mkdir $out
+mkdir "$out"
 
 echo "export SHELL=$shell" > $out/setup
 echo "initialPath=\"$initialPath\"" >> $out/setup