Skip to content

Commit

Permalink
Fix reference error in loadConfig.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
smikitky committed Apr 4, 2024
1 parent 589855c commit e83c1c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loadConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const loadConfig = async (args: {
const outSuffix: string | null =
conf.OUT_SUFFIX?.length > 0
? conf.OUT_SUFFIX
: (args.out_suffix as string).length > 0
: (args.out_suffix as string)?.length > 0
? (args.out_suffix as string)
: null;
if (outSuffix) {
Expand Down

0 comments on commit e83c1c1

Please sign in to comment.