aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Ferrell <major@homeonderanged.org>2014-01-15 10:13:42 -0800
committerMark Ferrell <major@homeonderanged.org>2014-01-15 10:13:42 -0800
commit6856f5c1b47b4f44b57fe33938d4bcceeb2a4936 (patch)
treecf60c79a07abfa47d6f0920a3a249dab880ac136
parent23f0fc4e6fc8c3aa6d497eeeec1158881c05573b (diff)
Do not quite exit codes
* Incorrectly quoted the exit code when trying to fixup Issue #52, this fixes #57
-rwxr-xr-xbuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/build b/build
index dc612b7..ae99d9e 100755
--- a/build
+++ b/build
@@ -367,4 +367,4 @@ build_make()
BUILD_EXIT="$?"
}
build_make "${@}" 2>&1 | tee "${BUILDER_TMPDIR}/builder.log"
-exit "${BUILD_EXIT}"
+exit ${BUILD_EXIT}