From 33fcd69d45750cc90b61169c42f09eb1746d1aa6 Mon Sep 17 00:00:00 2001 From: Yetkin Timocin Date: Tue, 7 Jan 2025 10:41:34 -0800 Subject: [PATCH] chore: update error and warning messages for not matching files in files field (#568) --- src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.ts b/src/main.ts index 2168f13b4..438be8401 100644 --- a/src/main.ts +++ b/src/main.ts @@ -67,9 +67,9 @@ async function run() { const files = paths(config.input_files); if (files.length == 0) { if (config.input_fail_on_unmatched_files) { - throw new Error(`⚠️ ${config.input_files} not include valid file.`); + throw new Error(`⚠️ ${config.input_files} does not include a valid file.`); } else { - console.warn(`🤔 ${config.input_files} not include valid file.`); + console.warn(`🤔 ${config.input_files} does not include a valid file.`); } } const currentAssets = rel.assets;