Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
a486a471
Kaydet (Commit)
a486a471
authored
Eki 13, 2018
tarafından
Steve Dower
Kaydeden (comit)
Miss Islington (bot)
Eki 13, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixes issues in Windows release upload script (GH-9845)
üst
d4d60134
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
uploadrelease.ps1
Tools/msi/uploadrelease.ps1
+8
-3
No files found.
Tools/msi/uploadrelease.ps1
Dosyayı görüntüle @
a486a471
...
...
@@ -39,6 +39,8 @@ param(
if
(
-not
$build
)
{
throw
"-build option is required"
}
if
(
-not
$user
)
{
throw
"-user option is required"
}
$tools
=
$script
:MyInvocation.MyCommand.Path |
Split-Path
-parent;
if
(
-not
((
Test-Path
"
$build
\win32\python-*.exe"
)
-or
(
Test-Path
"
$build
\amd64\python-*.exe"
)))
{
throw
"-build argument does not look like a 'build' directory"
}
...
...
@@ -105,7 +107,7 @@ if (-not $skipupload) {
if
(
-not
$skippurge
)
{
# Run a CDN purge
py purge.py
"
$(
$p
[
0]
)$(
$p
[
1]
)
"
py
$tools
\
purge.py
"
$(
$p
[
0]
)$(
$p
[
1]
)
"
}
if
(
-not
$skiptest
)
{
...
...
@@ -126,8 +128,11 @@ if (-not $skiptest) {
if
(
-not
$skiphash
)
{
# Display MD5 hash and size of each downloadable file
pushd
$build
gci
python
*
.chm,
*
\
*
.exe,
*
\
*
.zip |
`
$hashes
=
gci
python
*
.chm,
*
\
*
.exe,
*
\
*
.zip |
`
Sort-Object
Name |
`
Format-Table
Name, @
{
Label
=
"MD5"
;
Expression
={(
Get-FileHash
$_
-Algorithm MD5
)
.Hash
}}
, Length
Format-Table
Name, @
{
Label
=
"MD5"
;
Expression
={(
Get-FileHash
$_
-Algorithm MD5
)
.Hash
}}
, Length -AutoSize |
`
Out-String
-Width 4096
$hashes
| clip
$hashes
popd
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment