From ce29fd82ddd10cf31aa62942c2cf07e5bbfb7126 Mon Sep 17 00:00:00 2001 From: Manuel Cillero Date: Sat, 20 Sep 2025 13:43:36 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20[tools]=20Fuerza=20pulsar=20intr?= =?UTF-8?q?o=20para=20confirmar=20input?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tools/changelog.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/changelog.sh b/tools/changelog.sh index 2668ec6..211e896 100755 --- a/tools/changelog.sh +++ b/tools/changelog.sh @@ -88,12 +88,12 @@ git-cliff --unreleased "${COMMON_ARGS[@]}" echo "CHANGELOG generated at '$CHANGELOG_FILE'" # Pregunta por la revisión del archivo de cambios generado -read -p "Do you want to review the changelog before continuing? (y/n) " -n 1 -r || exit 1 +read -p "Do you want to review the changelog before continuing? (y/n) " -r || exit 1 echo if [[ "$REPLY" =~ ^[Yy]$ ]]; then ${EDITOR:-nano} "$CHANGELOG_FILE" fi -read -p "Do you want to proceed with the release of $CRATE? (y/n) " -n 1 -r || exit 1 +read -p "Do you want to proceed with the release of $CRATE? (y/n) " -r || exit 1 echo if [[ ! "$REPLY" =~ ^[Yy]$ ]]; then echo "Aborting release process." >&2