From 63e3e010fbb92e70d98a9b00c1c5d614186036cd Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Wed, 29 Oct 2025 14:21:45 +0100 Subject: [PATCH] =?UTF-8?q?[flutter]=C2=A0Fix=20publish.sh=20to=20run=20da?= =?UTF-8?q?rt=20pub=20publish=20without=20capture?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spine-flutter/publish.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spine-flutter/publish.sh b/spine-flutter/publish.sh index 73998c4f2..a95aa5c12 100755 --- a/spine-flutter/publish.sh +++ b/spine-flutter/publish.sh @@ -23,11 +23,11 @@ else fi log_action "Publishing to Dart Pub" -if DART_OUTPUT=$(dart pub publish 2>&1); then +# Don't capture output so user can interact with the confirmation prompt +if dart pub publish; then log_ok log_summary "✓ Flutter package published successfully" else log_fail - log_error_output "$DART_OUTPUT" exit 1 fi \ No newline at end of file