From 4607b0558f044eb6655c265ea4060f2d9bc6734c Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Fri, 2 May 2025 10:50:23 +0100 Subject: [PATCH] print prerelease script errors --- scripts/publish-prerelease.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/publish-prerelease.sh b/scripts/publish-prerelease.sh index 763a80fbe..66602fb06 100755 --- a/scripts/publish-prerelease.sh +++ b/scripts/publish-prerelease.sh @@ -55,7 +55,8 @@ if output=$(pnpm exec changeset version --snapshot $version 2>&1); then exit 0 fi else - echo "Error running changeset version command" + echo "$output" + echo "Error running changeset version command, detailed output above" exit 1 fi