summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2017-12-06 20:12:44 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2017-12-06 20:12:44 (GMT)
commit8676ac5419b9518d18c57ed32ea4796b218135f4 (patch)
treefe335f695b4b91dd8b67394ecb3b5d32f8ee5020
parentf722e8c993e1e1d723a705bd7247cbb12838a1ff (diff)
downloadcpython-8676ac5419b9518d18c57ed32ea4796b218135f4.zip
cpython-8676ac5419b9518d18c57ed32ea4796b218135f4.tar.gz
cpython-8676ac5419b9518d18c57ed32ea4796b218135f4.tar.bz2
Allows non-critical upload steps to fail (GH-4742) (#4743)
(cherry picked from commit 9ab11b3a029fba36c1a7e869be87fb4f31ebcf24)
-rw-r--r--Tools/msi/uploadrelease.proj6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/msi/uploadrelease.proj b/Tools/msi/uploadrelease.proj
index 881b825..96b99a4 100644
--- a/Tools/msi/uploadrelease.proj
+++ b/Tools/msi/uploadrelease.proj
@@ -52,11 +52,11 @@
</Target>
<Target Name="_Upload" Condition="!$(DryRun)">
- <Exec Command="&quot;$(PLINK)&quot; $(User)@$(Host) mkdir %(File.CopyTo) ^&amp;^&amp; chgrp downloads %(File.CopyTo) ^&amp;^&amp; chmod g-w,o+rx %(File.CopyTo)" />
+ <Exec Command="&quot;$(PLINK)&quot; $(User)@$(Host) mkdir %(File.CopyTo) ^&amp;^&amp; chgrp downloads %(File.CopyTo) ^&amp;^&amp; chmod g-w,o+rx %(File.CopyTo)" ContinueOnError="true" />
<Exec Command="&quot;$(PSCP)&quot; @(File,' ') $(User)@$(Host):%(File.CopyTo)" />
- <Exec Command="&quot;$(PLINK)&quot; $(User)@$(Host) chgrp downloads %(File.CopyTo)/*; chmod g-w,o+r %(File.CopyTo)/*" />
+ <Exec Command="&quot;$(PLINK)&quot; $(User)@$(Host) chgrp downloads %(File.CopyTo)/*; chmod g-w,o+r %(File.CopyTo)/*" ContinueOnError="true" />
</Target>
-
+
<Target Name="_PrintNames" Condition="$(DryRun)">
<Exec Command="echo &quot;$(PLINK)&quot; $(User)@$(Host) mkdir %(File.CopyTo) ^&amp;^&amp; chgrp downloads %(File.CopyTo) ^&amp;^&amp; chmod g-w,o+rx %(File.CopyTo)" />
<Exec Command="echo &quot;$(PSCP)&quot; @(File,' ') $(User)@$(Host):%(File.CopyTo)" />