Skip to content

Commit ca87529

Browse files
authored
bug: do not throw error on non-zero exit code (#216)
We explicitly check for this in our logic.
1 parent 1931f8d commit ca87529

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/deploy-appengine.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export async function run(): Promise<void> {
152152
if (flagList) appDeployCmd = appDeployCmd.concat(flagList);
153153
}
154154

155-
const options = { silent: true };
155+
const options = { silent: true, ignoreReturnCode: true };
156156
const commandString = `${toolCommand} ${appDeployCmd.join(' ')}`;
157157
logInfo(`Running: ${commandString}`);
158158

0 commit comments

Comments
 (0)