Skip to content

Commit 33fcd69

Browse files
authored
chore: update error and warning messages for not matching files in files field (#568)
1 parent 01050bd commit 33fcd69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ 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} not include valid file.`);
70+
throw new Error(`⚠️ ${config.input_files} does not include a valid file.`);
7171
} else {
72-
console.warn(`🤔 ${config.input_files} not include valid file.`);
72+
console.warn(`🤔 ${config.input_files} does not include a valid file.`);
7373
}
7474
}
7575
const currentAssets = rel.assets;

0 commit comments

Comments
 (0)