From e556d282d68db6449f251789c6bfc705f3b3803b Mon Sep 17 00:00:00 2001 From: bryan Date: Mon, 3 Jul 2023 08:25:16 -0400 Subject: [PATCH] Update for 23.05.0-rc2 --- openwrtbuilder | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openwrtbuilder b/openwrtbuilder index 81568e8..d63ca40 100755 --- a/openwrtbuilder +++ b/openwrtbuilder @@ -565,7 +565,7 @@ fromSource() { local branch="openwrt-${RELEASE%.*}" local tag="v$RELEASE" local r - read -r -p "Use HEAD of $branch branch (y, recommended) or $tag tag (n)? (Y/n)" r + read -r -p "Use HEAD of $branch branch (y, recommended) or $tag tag (n)? (Y/n): " r r=${r,,} if [[ "$r" =~ ^(no|n)$ ]]; then execute "${wt_cmd[@]}" "$tag" @@ -674,7 +674,7 @@ fromSource() { debug() { (( DEBUG )) && echo "Debug: $*"; } askOk() { local r - read -r -p "$* [y/N]" r + read -r -p "$* [y/N]: " r r=${r,,} [[ "$r" =~ ^(yes|y)$ ]] }