Address PR feedback

This commit is contained in:
Sridhar Periyasamy 2015-10-21 13:47:53 -07:00
parent 0dbc51890e
commit 8b4df2d31f
2 changed files with 1 additions and 3 deletions

View file

@ -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}"
}

View file

@ -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