control: Fix bashism

This commit is contained in:
Rodrigo Arias Mallo 2020-10-07 10:55:40 +02:00
parent 4ea0d16926
commit 81004b5ee6

View File

@ -15,7 +15,7 @@ stdenv.mkDerivation {
installPhase = ''
cat > $out <<EOF
#!/bin/sh
for n in {1..${toString loops}}; do
for n in \$(seq 1 ${toString loops}); do
${program}
done
EOF