16 lines
279 B
Bash
16 lines
279 B
Bash
|
source common.sh
|
||
|
|
||
|
echo "Testing multiple outputs..."
|
||
|
|
||
|
drvPath=$($nixinstantiate multiple-outputs.nix)
|
||
|
|
||
|
echo "derivation is $drvPath"
|
||
|
|
||
|
outPath=$($nixstore -rvv "$drvPath")
|
||
|
|
||
|
echo "output path is $outPath"
|
||
|
|
||
|
text=$(cat "$outPath"/file)
|
||
|
if test "$text" != "success"; then exit 1; fi
|
||
|
|