Google App Engine Make a rollback with appcfg.sh

后端 未结 5 1314
不思量自难忘°
不思量自难忘° 2021-02-04 22:05

I\'m trying to make a rollback due a deploy failed, my server code is on java, and also i\'m using App Engine Eclipse PlugIn for. my appcfg.sh file is located at /Applicat

5条回答
  •  没有蜡笔的小新
    2021-02-04 22:27

    Use the following commands on OSX. Note the appcfg.sh doesn't have execute permission by default so you need to add it via chmod.

    cd /Users/Labuser/Downloads/appengine-java-sdk-1.9.22/bin
    
    chmod 755 appcfg.sh
    
    sh appcfg.sh rollback /Users/Labuser/Ducuments/AndroidWS/AndroidStudioProjects/AndroidProject/modulebackend/src/main/webapp/
    

提交回复
热议问题