summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 011aee7b94..88decff8fe 100755
--- a/build.sh
+++ b/build.sh
@@ -203,6 +203,11 @@ build_coreclr()
# Build CoreCLR
+ if [ $__ConfigureOnly == 1 ]; then
+ echo "Skipping CoreCLR build."
+ return
+ fi
+
echo "Executing $buildTool install -j $NumProc"
$buildTool install -j $NumProc
@@ -544,8 +549,8 @@ while :; do
configureonly)
__ConfigureOnly=1
- __SkipCoreCLR=1
__SkipMSCorLib=1
+ __SkipNuget=1
__IncludeTests=
;;