gae:deploy doesn't work on Windows
Closed this issue · 2 comments
pipwilson commented
line 28 in commands.py says
if not os.path.exists(os.path.join(gae_path, 'bin/appcfg.sh')):
and line 71 says
os.system('%s/bin/appcfg.sh update %s' % (gae_path, war_path))
These need to check for the platform and run bin/appcfg.cmd if on windows
if sys.platform == 'win32'
etc.
fdrouet commented
mandubian commented
apparently this issue has been solved, I close it.