From 07a55e90649f7ab1b23f70f631780c832f959ef6 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 16 Nov 2025 14:04:41 -0700 Subject: [PATCH] Add a log for visibility --- scripts/tagExists.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/tagExists.mjs b/scripts/tagExists.mjs index fce9e17..2ddcdbd 100644 --- a/scripts/tagExists.mjs +++ b/scripts/tagExists.mjs @@ -31,6 +31,8 @@ async function main() { console.log(`Tag with name "${TAG_NAME}" already exists`); process.exit(1); }; + + console.log(`Tag with name "${TAG_NAME}" not found, proceeding`); }; main();