nix-gh/tests/build-hook.sh
2017-05-02 12:07:56 +02:00

11 lines
234 B
Bash

source common.sh
clearStore
outPath=$(nix-build build-hook.nix --no-out-link --option build-hook $(pwd)/build-hook.hook.sh)
echo "output path is $outPath"
text=$(cat "$outPath"/foobar)
if test "$text" != "BARBAR"; then exit 1; fi