blob: b9de0099365476df6ce0f54be7e33dcc6ea2fb85 (
plain) (
tree)
|
|
source common.sh
export NIX_BUILD_HOOK="build-hook.hook.sh"
outPath=$($nixbuild build-hook.nix)
echo "output path is $outPath"
text=$(cat "$outPath"/foobar)
if test "$text" != "BARBAR"; then exit 1; fi
|