Skip to content

Commit 55d367e

Browse files
drdazflovilmart
authored andcommitted
Check the correct verbose field when hiding push details (#5324)
1 parent 6a93806 commit 55d367e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli/utils/runner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function logStartupOptions(options) {
66
if (key == 'masterKey') {
77
value = '***REDACTED***';
88
}
9-
if (key == 'push' && process.env.VERBOSE != true) {
9+
if (key == 'push' && options.verbose != true) {
1010
value = '***REDACTED***';
1111
}
1212
if (typeof value === 'object') {

0 commit comments

Comments
 (0)