We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 026124f commit 4f020a7Copy full SHA for 4f020a7
1 file changed
export-dynamic/export-dynamic.sh
@@ -53,7 +53,14 @@ run_cli() {
53
# we WANT cli_args to split by spaces here
54
# shellcheck disable=SC2068
55
if ! "${cli_bin[@]}" ${cli_args_split[@]} >/tmp/export-dynamic-cli.log 2>&1; then
56
- echo "Error running CLI: $(cat /tmp/export-dynamic-cli.log)"
+ echo "Error running CLI: "
57
+ echo "##########################################################"
58
+ cat /tmp/export-dynamic-cli.log
59
60
+ if [[ -f yarn-install.log ]]; then
61
+ cat yarn-install.log;
62
63
+ fi
64
return 1
65
fi
66
rm -f /tmp/export-dynamic-cli.log
0 commit comments