mirror of
https://github.com/NixOS/nix.git
synced 2025-11-09 12:06:01 +01:00
7 lines
173 B
Bash
7 lines
173 B
Bash
source common.sh
|
|
|
|
echo "Testing multiple outputs..."
|
|
|
|
outPath=$(nix-build multiple-outputs.nix -A b)
|
|
echo "output path is $outPath"
|
|
[ "$(cat "$outPath"/file)" = "success" ]
|