Skip to content

Commit 0d967ad

Browse files
committed
fix: silence token generation command
1 parent 939b7ca commit 0d967ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cloud_auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export class CloudAuth implements Authenticator {
5151
if (args) {
5252
cmd = `${cmd} ${args}`;
5353
}
54-
result = shelljs.exec(cmd);
54+
result = shelljs.exec(cmd, {silent: true});
5555
if (result.code !== 0) {
5656
throw new Error(result.stderr);
5757
}

0 commit comments

Comments
 (0)