about summary refs log tree commit diff
path: root/tests/build-hook.sh
blob: 2005c7cebdc4893ded92078f2eeca81ce6bbac46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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