diff options
Diffstat (limited to 'tests/substituter.builder.sh')
-rw-r--r-- | tests/substituter.builder.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/substituter.builder.sh b/tests/substituter.builder.sh deleted file mode 100644 index c9ce0a08c6a8..000000000000 --- a/tests/substituter.builder.sh +++ /dev/null @@ -1,22 +0,0 @@ -# Set a PATH (!!! impure). -export PATH=/bin:/usr/bin:$PATH - -mkdir $out - -cat > $out/substituter <<EOF -#! /bin/sh -ex -echo \$* - -case \$* in - *aaaa*) - echo "Closure([\"\$2\"],[(\"\$2\",[])])" > \$1 - ;; - *) - mkdir \$1 - echo \$3 \$4 > \$1/hello - ;; -esac -EOF - -chmod +x $out/substituter - |