extras/makedeb.py: no longer obtaining version from git

This commit is contained in:
Pablo Hoffman 2012-01-02 13:28:24 -02:00
parent 6cb9e1c6a0
commit caffe0e800
1 changed files with 1 additions and 2 deletions

View File

@ -16,9 +16,8 @@ def build(suffix):
with open(ifn, 'w') as of:
of.write(s)
env={'SCRAPY_VERSION_FROM_GIT': '1'}
check_call('debchange -m -D unstable --force-distribution -v $(python setup.py --version)+$(date +%s) "Automatic build"', \
shell=True, env=env)
shell=True)
check_call('debuild -us -uc -b', shell=True)
def clean(suffix):