From e82f0c00c14055776752943b59c1a6459f99565b Mon Sep 17 00:00:00 2001 From: Kongqun Yang Date: Thu, 31 Oct 2013 09:30:12 -0700 Subject: [PATCH] Add "set -e" to build.sh as suggested by Rintaro. Change-Id: I75417b70c173138ec96b161faca6e09fc1b1c7f1 --- build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sh b/build.sh index 40db61d6f7..09884571e3 100755 --- a/build.sh +++ b/build.sh @@ -20,6 +20,8 @@ # ninja -C out/Debug {Module} # Again, Module is optional. # ninja -C out/Release {Module} # Again, Module is optional. +set -e + function setup_packager_env() { if [ $# -lt 1 ]; then local type="Debug"