From c3a8637dc14e7323fc71938b01a20c3d2c04aac5 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Wed, 18 Dec 2019 10:38:03 +0300 Subject: move location where we get BASEDIR --- mkrootfs.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'mkrootfs.sh') diff --git a/mkrootfs.sh b/mkrootfs.sh index bbb1bff..1474651 100755 --- a/mkrootfs.sh +++ b/mkrootfs.sh @@ -9,9 +9,11 @@ msg() { printf "\033[1;35m=>\033[m $1\\n" ;} error() { msg "\033[1;31mERROR: \033[m$1" ;} >&2 die() { error "$1"; exit 1 ;} ask() { printf "\033[1;33m== $1 ==\\n(y/N) "; read ans; case "$ans" in [Yy]*) return 0 ;; *) return 1 ;; esac ;} -BASEDIR="$PWD" +# Let's get current working directory +BASEDIR="$PWD" + # If there is no config file, we copy config.def # to config. After we make sure config file is # in place, we source the contents -- cgit v1.2.3