1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00
nix/tests/build-hook.sh

11 lines
227 B
Bash
Raw Normal View History

source common.sh
2014-07-11 10:20:12 -04:00
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