Fix release script

This commit is contained in:
William S Fulton 2013-05-12 21:27:38 +01:00
commit de12f6c25e

View file

@ -70,7 +70,7 @@ os.system("git tag -a -m " + tag + " " + tag) == 0 or failed()
outdir = os.path.basename(os.getcwd()) + "/" + dirname + "/"
print "Grabbing tagged release git repository using 'git archive' into " + outdir
os.system("(cd .. && git archive --prefix=" + outdir + tag + " . | tar -xf -)") == 0 or failed()
os.system("(cd .. && git archive --prefix=" + outdir + " " + tag + " . | tar -xf -)") == 0 or failed()
# Remove the debian directory -- it's not official