nix-gh/tests/build-hook.sh
Eelco Dolstra 838138c5c4 Fix test
2014-07-11 16:22:24 +02:00

11 lines
227 B
Bash

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