From af797f1af4d1bfed73e732b5c017589169d36bc0 Mon Sep 17 00:00:00 2001 From: Christian Pape Date: Mon, 23 Nov 2015 16:01:09 +0100 Subject: [PATCH] Update build.sh The "bash -e" prevents the error messages to appear. For example if "which cmake" fails the "echo" will not be called. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index cc79fad..305005f 100755 --- a/build.sh +++ b/build.sh @@ -1,4 +1,4 @@ -#!/bin/bash -e +#!/bin/bash if [ ! -e build.sh ]; then echo "build.sh must be ran from the root of the project."