Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
docker-py
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
docker-py
Commits
52c2cc84
Kaydet (Commit)
52c2cc84
authored
Eyl 27, 2016
tarafından
Joffrey F
Kaydeden (comit)
GitHub
Eyl 27, 2016
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #1228 from christianbundy/synthesize-execute-bit
Synthesize execute permission bit
üst
803ff503
a718ab69
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
1 deletion
+16
-1
utils.py
docker/utils/utils.py
+16
-1
No files found.
docker/utils/utils.py
Dosyayı görüntüle @
52c2cc84
...
@@ -4,6 +4,7 @@ import os
...
@@ -4,6 +4,7 @@ import os
import
os.path
import
os.path
import
json
import
json
import
shlex
import
shlex
import
sys
import
tarfile
import
tarfile
import
tempfile
import
tempfile
import
warnings
import
warnings
...
@@ -92,7 +93,21 @@ def tar(path, exclude=None, dockerfile=None, fileobj=None, gzip=False):
...
@@ -92,7 +93,21 @@ def tar(path, exclude=None, dockerfile=None, fileobj=None, gzip=False):
exclude
=
exclude
or
[]
exclude
=
exclude
or
[]
for
path
in
sorted
(
exclude_paths
(
root
,
exclude
,
dockerfile
=
dockerfile
)):
for
path
in
sorted
(
exclude_paths
(
root
,
exclude
,
dockerfile
=
dockerfile
)):
t
.
add
(
os
.
path
.
join
(
root
,
path
),
arcname
=
path
,
recursive
=
False
)
i
=
t
.
gettarinfo
(
os
.
path
.
join
(
root
,
path
),
arcname
=
path
)
if
sys
.
platform
==
'win32'
:
# Windows doesn't keep track of the execute bit, so we make files
# and directories executable by default.
i
.
mode
=
i
.
mode
&
0
o755
|
0
o111
try
:
# We open the file object in binary mode for Windows support.
f
=
open
(
os
.
path
.
join
(
root
,
path
),
'rb'
)
except
IOError
:
# When we encounter a directory the file object is set to None.
f
=
None
t
.
addfile
(
i
,
f
)
t
.
close
()
t
.
close
()
fileobj
.
seek
(
0
)
fileobj
.
seek
(
0
)
...
...
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