summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorWes Haggard <Wes.Haggard@microsoft.com>2018-03-21 16:40:34 -0700
committerWes Haggard <Wes.Haggard@microsoft.com>2018-03-23 08:22:16 -0700
commit46f003fe2276e319f86d06b934aab9d57461a9f6 (patch)
tree64028a2506c5857897f247fc1bbb25ec7c5d690a /build.sh
parente431eb23fc21b773c17b96bb0f8189597d436b98 (diff)
downloadcoreclr-46f003fe2276e319f86d06b934aab9d57461a9f6.tar.gz
coreclr-46f003fe2276e319f86d06b934aab9d57461a9f6.tar.bz2
coreclr-46f003fe2276e319f86d06b934aab9d57461a9f6.zip
Fix RestoreSources for optdata packages
Pass unprocessed args to restore optdata step so it can override the sources when doing restore Handle prority as an unprocessed arg for the sync alias
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 43502bfcf4..851689439a 100755
--- a/build.sh
+++ b/build.sh
@@ -164,7 +164,7 @@ restore_optdata()
if [[ ( $__SkipRestoreOptData == 0 ) && ( $__isMSBuildOnNETCoreSupported == 1 ) ]]; then
echo "Restoring the OptimizationData package"
- "$__ProjectRoot/run.sh" sync -optdata
+ "$__ProjectRoot/run.sh" sync -optdata $__UnprocessedBuildArgs
if [ $? != 0 ]; then
echo "Failed to restore the optimization data package."
exit 1