guillaumebort/play-gae

gae:deploy doesn't work on Windows

Closed this issue · 2 comments

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.

this was fixed :

you can close the issue

apparently this issue has been solved, I close it.