From 8b4df2d31fe4e235b82e75f59d56e52b54d1a9c3 Mon Sep 17 00:00:00 2001 From: Sridhar Periyasamy Date: Wed, 21 Oct 2015 13:47:53 -0700 Subject: [PATCH] Address PR feedback --- netci.groovy | 2 -- scripts/ci_build.sh | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/netci.groovy b/netci.groovy index c80e9f24d..aaaac5d63 100644 --- a/netci.groovy +++ b/netci.groovy @@ -27,11 +27,9 @@ def static getBuildJobName(def configuration, def os) { // Calculate the build command if (os == 'Windows_NT') { - // On Windows we build the mscorlibs too. buildCommand = ".\\scripts\\ci_build.cmd ${lowerConfiguration}" } else { - // On other OS's we skipmscorlib but run the pal tests buildCommand = "./scripts/ci_build.sh ${lowerConfiguration}" } diff --git a/scripts/ci_build.sh b/scripts/ci_build.sh index 118fde9b6..7a378a6b7 100755 --- a/scripts/ci_build.sh +++ b/scripts/ci_build.sh @@ -2,7 +2,7 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -source $SCRIPT_DIR/../build.sh $@ +$SCRIPT_DIR/../build.sh $@ ret_code=$? exit $ret_code