Skip to content

Commit

Permalink
chore: apply changes after linting [bot]
Browse files Browse the repository at this point in the history
  • Loading branch information
taiga-family-bot authored and taiga-family-bot committed Jul 18, 2024
1 parent 3a87700 commit ba73182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/helpers/argv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function getValueByFlag<T extends string>(flag: string, fallback: T): T {
stringifier(parsedValue) ??
(process.argv[index + 1]?.startsWith('-')
? fallback
: stringifier(process.argv[index + 1]) ?? fallback);
: (stringifier(process.argv[index + 1]) ?? fallback));

processLog(`parsed flags: \n${[parsedFlag, value || "''"].join('=')}`);

Expand Down

0 comments on commit ba73182

Please sign in to comment.