From ff41f7483016a1d0f560d0addba5dd22b9c69978 Mon Sep 17 00:00:00 2001 From: Chase Miller Date: Wed, 4 Feb 2015 16:31:58 +0000 Subject: Fixed variable issues in build.sh The clean argument wasn't properly setting the __CleanBuild variable to trigger the clean build operation. The current build target/type message was using CMD variable substitution syntax instead of BASH. --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index 25ee783280..545b5b29b8 100755 --- a/build.sh +++ b/build.sh @@ -64,7 +64,7 @@ build_coreclr() { # All set to commence the build - echo Commencing build of native components for %__BuildArch%/%__BuildType% + echo Commencing build of native components for $__BuildArch/$__BuildType cd $__CMakeSlnDir # Regenerate the CMake solution @@ -134,7 +134,7 @@ for i in "$@" __CMakeArgs=RELEASE ;; clean) - __CleanBuild=true + __CleanBuild=1 ;; *) __UnprocessedBuildArgs="$__UnprocessedBuildArgs $i" -- cgit v1.2.3