We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8eeb9d9 commit a0b6c39Copy full SHA for a0b6c39
1 file changed
scripts/build-in-docker.sh
@@ -22,7 +22,13 @@ on_exit() {
22
trap on_exit EXIT
23
24
if ! ./build-all.sh; then
25
- echo "Containerized build failed - $BUILD_TMP is discarded automatically."
+ set +x
26
+ echo 1>&2
27
+ echo "Containerized build failed." 1>&2
28
+ echo "Starting an emergency shell, so that you can analyze the issue..." 1>&2
29
+ echo "Note: the entire $BUILD_TMP will be discarded as soon as you exit this shell!" 1>&2
30
31
+ bash -i
32
exit 1
33
fi
34
0 commit comments