Google App Engine Make a rollback with appcfg.sh

后端 未结 5 1227
不思量自难忘°
不思量自难忘° 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:48

    It does not have execute permission by default:

    -rw-r--r--  1 yorkw  staff   558 11 Dec 06:01 appcfg.sh
    

    Run chmod 755 appcfg.sh to change the permission:

    -rwxr-xr-x  1 yorkw  staff   558 11 Dec 06:01 appcfg.sh
    

    Then you should be able to run it in terminal.

提交回复
热议问题