removed version.num

This commit is contained in:
Rushabh Mehta 2012-04-14 15:03:49 +05:30
parent 03e8787cda
commit b47e56f7b6

5
wnf.py
View File

@ -179,10 +179,15 @@ def run():
os.system('git status')
elif options.pull:
from build.project import update_version
os.system('git pull %s %s' % (options.pull[0], options.pull[1]))
os.chdir('lib')
os.system('git pull %s %s' % (options.pull[0], options.pull[1]))
# update js code version (clear to localStorage)
update_version()
elif options.push:
os.system('git commit -a -m "%s"' % options.push[2])
os.system('git push %s %s' % (options.push[0], options.push[1]))