From 365dcae04babae688dcc49ee17efbf34288d35a8 Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Fri, 21 Feb 2025 16:23:04 -0500 Subject: [PATCH] fix: log errors --- .github/workflows/release-production.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-production.yml b/.github/workflows/release-production.yml index a81a234e1..7d5d2e27b 100644 --- a/.github/workflows/release-production.yml +++ b/.github/workflows/release-production.yml @@ -73,7 +73,7 @@ jobs: // Write back to file fs.writeFileSync(pluginPath, pluginContent); }).catch((err) => { - console.error('Plugin file is not valid XML'); + console.error('Plugin file is not valid XML', err); process.exit(1); });