From 011cfae08c1409ef012480cc90ce30159ecb2a16 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Wed, 13 May 2020 03:18:02 +0300 Subject: remove ask function, do it manually --- mkrootfs.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'mkrootfs.sh') diff --git a/mkrootfs.sh b/mkrootfs.sh index 787f537..6767911 100755 --- a/mkrootfs.sh +++ b/mkrootfs.sh @@ -7,7 +7,6 @@ # Functions msg() { printf '\033[1;35m-> \033[m%s\n' "$@" ;} -ask() { printf '\033[1;33m== %s ==\n(y/N) ' "$1" ; read ans; case "$ans" in [Yy]*) return 0 ;; *) return 1 ;; esac ;} die() { printf '\033[1;31m!> ERROR: \033[m%s\n' "$@" >&2; exit 1 ;} @@ -52,7 +51,9 @@ EOF # set in the configuration, the bootstrapper will # start immediately [ "$NOCONFIRM" ] || { - ask "Do you want to start the bootstrapper?" || die "User exited" + printf '\033[1;33m?> \033[mDo you want to start the bootstrapper? (y/N)\n' + read -r ans + case "$ans" in [Yy]*|'') ;; *) die "User exited" ; esac } # Script starts here -- cgit v1.2.3