debugging...

git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@20 4cde692c-a291-49d1-8350-778aa11640f8
This commit is contained in:
Just 1999-12-18 23:09:30 +00:00
parent ab5753c669
commit 39ee0f55f6

View File

@ -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)