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
bd0d91e7
Kaydet (Commit)
bd0d91e7
authored
May 22, 2015
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removes lingering references to RAR now that make_zip.py actually makes a ZIP
üst
ad577b93
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
make_zip.py
Tools/msi/make_zip.py
+0
-3
No files found.
Tools/msi/make_zip.py
Dosyayı görüntüle @
bd0d91e7
...
...
@@ -113,17 +113,14 @@ def main():
parser
.
add_argument
(
'-t'
,
'--temp'
,
metavar
=
'dir'
,
help
=
'A directory to temporarily extract files into'
,
type
=
Path
,
default
=
None
)
parser
.
add_argument
(
'-e'
,
'--embed'
,
help
=
'Create an embedding layout'
,
action
=
'store_true'
,
default
=
False
)
parser
.
add_argument
(
'-a'
,
'--arch'
,
help
=
'Specify the architecture to use (win32/amd64)'
,
type
=
str
,
default
=
"win32"
)
parser
.
add_argument
(
'--rar'
,
help
=
'Full path to WinRAR compressor (rar.exe)'
,
type
=
Path
,
default
=
Path
(
"rar.exe"
))
ns
=
parser
.
parse_args
()
source
=
ns
.
source
or
(
Path
(
__file__
)
.
parent
.
parent
.
parent
)
out
=
ns
.
out
arch
=
ns
.
arch
rar
=
getattr
(
ns
,
'rar'
)
assert
isinstance
(
source
,
Path
)
assert
isinstance
(
out
,
Path
)
assert
isinstance
(
arch
,
str
)
assert
isinstance
(
rar
,
Path
)
if
ns
.
temp
:
temp
=
ns
.
temp
...
...
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