···3435# -----------------------------------------
36# Write the build log to the default output
0000000003738outs=( $(getAllOutputNames) )
39defOut=${outs[0]}
···3435# -----------------------------------------
36# Write the build log to the default output
37+#
38+# # from stdenv setup.sh
39+getAllOutputNames() {
40+ if [ -n "$__structuredAttrs" ]; then
41+ echo "${!outputs[*]}"
42+ else
43+ echo "$outputs"
44+ fi
45+}
4647outs=( $(getAllOutputNames) )
48defOut=${outs[0]}