From 51fe2104bbaae7cb64bc598997d34a539fea7d17 Mon Sep 17 00:00:00 2001 From: Renato Botelho Date: Thu, 24 Sep 2015 13:55:29 -0300 Subject: [PATCH] If an error happened, just abort, there is no reason to ask user to press enter --- tools/build_snapshots.sh | 5 ----- tools/builder_common.sh | 4 ---- 2 files changed, 9 deletions(-) diff --git a/tools/build_snapshots.sh b/tools/build_snapshots.sh index c07dedc363..9260fab526 100755 --- a/tools/build_snapshots.sh +++ b/tools/build_snapshots.sh @@ -37,11 +37,6 @@ usage() { echo " -u: Do not upload snapshots" } -# Use an env var to let build.sh know we are running build_snapshots.sh -# This will avoid build.sh to run in interactive mode and wait a key -# to be pressed when something goes wrong -export NOT_INTERACTIVE=1 - export BUILDER_TOOLS=$(realpath $(dirname ${0})) export BUILDER_ROOT=$(realpath "${BUILDER_TOOLS}/..") diff --git a/tools/builder_common.sh b/tools/builder_common.sh index d8e96cf987..caf4ae8519 100644 --- a/tools/builder_common.sh +++ b/tools/builder_common.sh @@ -155,10 +155,6 @@ print_error_pfS() { echo "Log saved on ${LOGFILE}" && \ tail -n20 ${LOGFILE} >&2 echo - if [ -z "${NOT_INTERACTIVE}" ]; then - echo "Press enter to continue." - read ans - fi kill $$ exit 1 }