We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f4304dd + 8cf2218 commit e6881dbCopy full SHA for e6881db
src/exec_auth.ts
@@ -52,11 +52,11 @@ export class ExecAuth implements Authenticator {
52
if (exec.args) {
53
cmd = `${cmd} ${exec.args.join(' ')}`;
54
}
55
- let opts: shell.ExecOpts;
+ let opts: shell.ExecOpts = { silent: true };
56
if (exec.env) {
57
const env = process.env;
58
exec.env.forEach((elt) => (env[elt.name] = elt.value));
59
- opts = { env };
+ opts = { ...opts, env };
60
61
const result = this.execFn(cmd, opts);
62
if (result.code === 0) {
0 commit comments