commit 88d7910b4e857983c939cb10237e1c4a339a936b
parent 613a67d20bb89af4ff2be3325b588954f328d0be
Author: Cem Keylan <cem@ckyln.com>
Date: Wed, 13 May 2020 03:17:40 +0300
remove error function, replace it with die only
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git 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