blob: dcfe6d580eccd1cdf2f1bac163097a06e6b45a6f (
plain)
1
2
3
4
5
6
7
8
9
10
|
source common.sh
clearStore
rm -f $TEST_ROOT/result
nix-build structured-attrs.nix -A all -o $TEST_ROOT/result
[[ $(cat $TEST_ROOT/result/foo) = bar ]]
[[ $(cat $TEST_ROOT/result-dev/foo) = foo ]]
|