From 88d7910b4e857983c939cb10237e1c4a339a936b Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Wed, 13 May 2020 03:17:40 +0300 Subject: remove error function, replace it with die only --- mkrootfs.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mkrootfs.sh b/mkrootfs.sh index b7f1e15..787f537 100755 --- a/mkrootfs.sh +++ b/mkrootfs.sh @@ -7,9 +7,8 @@ # Functions msg() { printf '\033[1;35m-> \033[m%s\n' "$@" ;} -error() { printf '\033[1;31mERROR: \033[m%s\n' "$@" ;} >&2 -die() { error "$1"; exit 1 ;} 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 ;} # Exit if the user is not root -- cgit v1.2.3