tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
test.testers: fix getAllOutputNames not found
Artturin
3 years ago
40197595
44425dc5
+9
1 changed file
expand all
collapse all
unified
split
pkgs
build-support
testers
expect-failure.sh
+9
pkgs/build-support/testers/expect-failure.sh
···
34
34
35
35
# -----------------------------------------
36
36
# Write the build log to the default output
37
37
+
#
38
38
+
# # from stdenv setup.sh
39
39
+
getAllOutputNames() {
40
40
+
if [ -n "$__structuredAttrs" ]; then
41
41
+
echo "${!outputs[*]}"
42
42
+
else
43
43
+
echo "$outputs"
44
44
+
fi
45
45
+
}
37
46
38
47
outs=( $(getAllOutputNames) )
39
48
defOut=${outs[0]}