Skip to content

Commit fa2d9c2

Browse files
drdazflovilmart
authored andcommitted
Check the correct verbose field when hiding push details (parse-community#5324)
1 parent a5b8b10 commit fa2d9c2

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)