shellcheck: prevent globbing and word splitting in package shell scripts

This commit is contained in:
Otto Sabart
2022-08-25 21:00:00 +02:00
parent c3b97e6728
commit acd341426a
7 changed files with 22 additions and 22 deletions

View File

@@ -39,8 +39,8 @@ let self = stdenvNoCC.mkDerivation {
--exclude=/{screenshots,'*.Dockerfile'} \
$dest
makeWrapper ${self.nodejsRuntime}/bin/node $out/bin/cl-rest \
--add-flags $dest/cl-rest.js
makeWrapper ${self.nodejsRuntime}/bin/node "$out/bin/cl-rest" \
--add-flags "$dest/cl-rest.js"
runHook postInstall
'';