Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewp committed Jan 26, 2023
1 parent f3130d6 commit 9b544b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/astro/src/core/logger/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ if (typeof process !== 'undefined') {
// NodeJS.process. This code treats it as a plain object so TS doesn't let us
// get away with incorrect assumptions.
let proc: object = process;
if('argv' in proc && Array.isArray(proc.argv)) {
if ('argv' in proc && Array.isArray(proc.argv)) {
if (proc.argv.includes('--verbose')) {
defaultLogLevel = 'debug';
} else if (proc.argv.includes('--silent')) {
Expand Down

0 comments on commit 9b544b9

Please sign in to comment.