summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorLakshmi Priya Sekar <lasekar@microsoft.com>2016-08-01 12:02:24 -0700
committerLakshmi Priya Sekar <lasekar@microsoft.com>2016-08-01 12:02:24 -0700
commitbea4564788d052384492ba6ceb4a8ee75cc5f67b (patch)
tree6cfb9090019bc08af68cb8f9afa2b3614e21da70 /build.sh
parent8e0cbbba5b41744873eb6263069497a5dbdfedd4 (diff)
downloadcoreclr-bea4564788d052384492ba6ceb4a8ee75cc5f67b.tar.gz
coreclr-bea4564788d052384492ba6ceb4a8ee75cc5f67b.tar.bz2
coreclr-bea4564788d052384492ba6ceb4a8ee75cc5f67b.zip
Fix errors in build scripts from run tool update.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 371ceb5868..e6ccfa8d86 100755
--- a/build.sh
+++ b/build.sh
@@ -197,9 +197,9 @@ build_coreclr()
# Build CoreCLR
- echo "Executing $buildTool install -j $NumProc $__UnprocessedBuildArgs"
+ echo "Executing $buildTool install -j $NumProc"
- $buildTool install -j $NumProc $__UnprocessedBuildArgs
+ $buildTool install -j $NumProc
if [ $? != 0 ]; then
echo "Failed to build coreclr components."
exit 1