added distribution script
git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@19 4cde692c-a291-49d1-8350-778aa11640f8
This commit is contained in:
parent
5a16f847f1
commit
ab5753c669
12
mktarball.py
Normal file
12
mktarball.py
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
#! /usr/bin/env python
|
||||||
|
|
||||||
|
import os
|
||||||
|
|
||||||
|
src = os.getcwd()
|
||||||
|
tar = src + ".tar"
|
||||||
|
gz = tar + ".gz"
|
||||||
|
tgz = src + ".tgz"
|
||||||
|
|
||||||
|
os.system("tar --exclude=CVS -cvf %s %s" % (tar, src))
|
||||||
|
os.system("gzip -9v %s" % tar)
|
||||||
|
os.rename(gz, tgz)
|
Loading…
x
Reference in New Issue
Block a user