Why can't I run 2 commands consecutively using batch file for gcloud

后端 未结 2 679
遥遥无期
遥遥无期 2021-01-14 07:13

so I have this .bat file:

@echo off
cd C:\\Users\\user\\Downloads
gcloud auth activate-service-account --key-file=keyFileName.json
gcloud auth p         


        
2条回答
  •  再見小時候
    2021-01-14 07:29

    You can also just add CALL before each command, for example:

    CALL gcloud app deploy
    CALL gcloud app describe
    

提交回复
热议问题