Ocarina 5.9

This commit is contained in:
Bryan Schumaker 2012-06-02 12:51:24 -04:00
parent 7390c65d63
commit a3e149e7c0
2 changed files with 3 additions and 1 deletions

View File

@ -75,6 +75,8 @@ def prepare_release(target, source, env):
now = datetime.datetime.now() now = datetime.datetime.now()
year = str(now.year) year = str(now.year)
month = str(now.month) month = str(now.month)
if (len(month) == 1):
month = "0" + month
f = open("PKGBUILD", "w") f = open("PKGBUILD", "w")
for line in open("PKGBUILD.tmpl"): for line in open("PKGBUILD.tmpl"):

View File

@ -4,7 +4,7 @@ import os
MAJOR = 5 MAJOR = 5
MINOR = 9 MINOR = 9
BUG = 0 BUG = 0
EXTRA = "rc" EXTRA = ""
DEBUG = False DEBUG = False
# Find version # Find version