views:

11

answers:

1

I am trying to use the appcfg.sh in the GAE Java SDK to rollback a stuck (in progress) deployment. However the rollback is failing because I have an space character in the Folder name for the Project:

appengine-java-sdk-1.3.5/bin/appcfg.sh rollback "workspace/Crowded\ Intelligence/war/" (fails) appengine-java-sdk-1.3.5/bin/appcfg.sh rollback 'workspace/Crowded\ Intelligence/war/' (fails) appengine-java-sdk-1.3.5/bin/appcfg.sh rollback workspace/Crowded\ Intelligence/war/ (fails)

Any thoughts on how I can get around this?

Thanks, Saqib

A: 

To fix the issue I had to rename the project folder to remove the space character, and then perform the rollback.......

Saqib Ali