Skip to content

Commit c43d763

Browse files
committed
chore: fmt code
Signed-off-by: Rui Chen <[email protected]>
1 parent c95fe14 commit c43d763

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/main.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,13 @@ async function run() {
6767
const files = paths(config.input_files);
6868
if (files.length == 0) {
6969
if (config.input_fail_on_unmatched_files) {
70-
throw new Error(`⚠️ ${config.input_files} does not include a valid file.`);
70+
throw new Error(
71+
`⚠️ ${config.input_files} does not include a valid file.`,
72+
);
7173
} else {
72-
console.warn(`🤔 ${config.input_files} does not include a valid file.`);
74+
console.warn(
75+
`🤔 ${config.input_files} does not include a valid file.`,
76+
);
7377
}
7478
}
7579
const currentAssets = rel.assets;

0 commit comments

Comments
 (0)