debugging...
git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@20 4cde692c-a291-49d1-8350-778aa11640f8
This commit is contained in:
parent
ab5753c669
commit
39ee0f55f6
10
mktarball.py
10
mktarball.py
@ -1,12 +1,16 @@
|
||||
#! /usr/bin/env python
|
||||
|
||||
import os
|
||||
import os, sys
|
||||
|
||||
src = os.path.basename(sys.argv[0])
|
||||
print src
|
||||
|
||||
xxxxxx
|
||||
|
||||
src = os.getcwd()
|
||||
tar = src + ".tar"
|
||||
gz = tar + ".gz"
|
||||
tgz = src + ".tgz"
|
||||
|
||||
os.system("tar --exclude=CVS -cvf %s %s" % (tar, src))
|
||||
os.system("tar --exclude="CVS|mktarball.py" -cvf %s %s" % (tar, src))
|
||||
os.system("gzip -9v %s" % tar)
|
||||
os.rename(gz, tgz)
|
||||
|
Loading…
x
Reference in New Issue
Block a user