summaryrefslogtreecommitdiff
path: root/src/syncAzure.proj
diff options
context:
space:
mode:
authorwtgodbe <wigodbe@microsoft.com>2017-06-30 12:29:12 -0700
committerwtgodbe <wigodbe@microsoft.com>2017-07-10 11:39:22 -0700
commit7935afa6b3b923ac38b90444d87fceb3bcd449b9 (patch)
treeb174092d9f269e9955b0d8c53aeb808e2421b8bb /src/syncAzure.proj
parentaa63b76ac1c64b78f20edff35708477f3afac713 (diff)
downloadcoreclr-7935afa6b3b923ac38b90444d87fceb3bcd449b9.tar.gz
coreclr-7935afa6b3b923ac38b90444d87fceb3bcd449b9.tar.bz2
coreclr-7935afa6b3b923ac38b90444d87fceb3bcd449b9.zip
Disable sync.cmd -n for Windows binaries
Diffstat (limited to 'src/syncAzure.proj')
-rw-r--r--src/syncAzure.proj3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/syncAzure.proj b/src/syncAzure.proj
index aeea48de9a..14baa2622e 100644
--- a/src/syncAzure.proj
+++ b/src/syncAzure.proj
@@ -21,5 +21,6 @@
<Error Condition="'$(RuntimeId)' == '' and '$(PublishTestNativeBins)' == 'true'" Text="Missing property RuntimeId." />
</Target>
- <Target Name="Build" DependsOnTargets="ValidateRequiredProperties;DownloadBlobsFromAzureTargets" />
+ <!-- We don't want to run sync on test native binaries for Windows, since those don't get published -->
+ <Target Name="Build" DependsOnTargets="ValidateRequiredProperties;DownloadBlobsFromAzureTargets" Condition="'$(PublishTestNativeBins)' != 'true' or !$(RuntimeId.ToLower().StartsWith('win'))"/>
</Project> \ No newline at end of file