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
b4c93811
Kaydet (Commit)
b4c93811
authored
Nis 19, 1996
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Copy .exp files to mwerks project directory too.
üst
3ba03b29
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
6 deletions
+27
-6
binhextree.py
Mac/scripts/binhextree.py
+27
-6
No files found.
Mac/scripts/binhextree.py
Dosyayı görüntüle @
b4c93811
...
...
@@ -4,11 +4,6 @@
#
# Jack Jansen, CWI, August 1995.
#
# To do:
# - Also do project files (. and .), after using AppleEvents to the
# various builders to clean the projects
# - Don't hexbin (and clean) if there exists a .hqx file that is newer.
#
import
os
import
binhex
...
...
@@ -138,11 +133,37 @@ def copycwproject(path, name):
else
:
project_files
[
creator
]
=
[
fss
]
def
copycwexpfile
(
path
,
name
):
"""Copy CW export file"""
global
project_files
dstdir
=
os
.
path
.
join
(
TOP
,
CWDIR
)
if
not
os
.
path
.
exists
(
dstdir
):
print
dstdir
print
'No CW-project dir, skip'
,
name
return
dstfile
=
os
.
path
.
join
(
dstdir
,
name
)
if
dstfile
[
-
6
:]
==
'..exp'
:
dstfile
=
dstfile
[:
-
6
]
+
'.mu.exp'
# Check that we're not in the dest directory
if
dstfile
==
path
:
return
# If the destination doesn't exists or is older that the source
# we copy and remember it
if
os
.
path
.
exists
(
dstfile
)
and
\
os
.
stat
(
dstfile
)[
8
]
>
os
.
stat
(
path
)[
8
]:
print
'Not copying'
,
path
,
'- Up-to-date'
else
:
print
'Copy'
,
path
macostools
.
copy
(
path
,
dstfile
)
extensions
=
[
(
'.rsrc'
,
binhexit
),
(
'.gif'
,
binhexit
),
(
'.'
,
copycwproject
)
(
'.'
,
copycwproject
),
(
'..exp'
,
copycwexpfile
)
]
def
walker
(
arg
,
top
,
names
):
...
...
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