1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-08 02:43:54 +02:00

* Make sure that no build hook is set by default in the tests.

* Don't use `seq' - some primitive, obsolete operating systems
  (Darwin) don't have it.
This commit is contained in:
Eelco Dolstra 2004-08-19 09:09:09 +00:00
parent 1eddee59f2
commit 8f1dcdfc0a
2 changed files with 2 additions and 1 deletions

View file

@ -2,7 +2,7 @@ storeExpr=$($TOP/src/nix-instantiate/nix-instantiate locking.nix)
echo "store expr is $storeExpr"
for i in $(seq 1 5); do
for i in 1 2 3 4 5; do
echo "WORKER $i"
$TOP/src/nix-store/nix-store -rvvvvvB "$storeExpr" &
done