shellcheck: prevent globbing and word splitting in package shell scripts

This commit is contained in:
Otto Sabart
2022-09-12 21:00:00 +02:00
parent c3b97e6728
commit acd341426a
7 changed files with 22 additions and 22 deletions
@@ -19,7 +19,7 @@ buildPythonPackage rec {
checkInputs = [ mock pytest ];
checkPhase = ''
runHook preCheck
USE_TWISTED=true py.test $out
USE_TWISTED=true py.test "$out"
runHook postCheck
'';