From e89fd7e263dd94b9614f7399c6daf11edf5db1f7 Mon Sep 17 00:00:00 2001 From: Edi Septriyanto Date: Fri, 13 Aug 2021 09:25:49 +0700 Subject: [PATCH] Fix file sourcing --- install.sh | 2 +- remove.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index b4e6fa5..6718198 100755 --- a/install.sh +++ b/install.sh @@ -32,7 +32,7 @@ BASEDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd ) # Include helper functions. if [ "$(type -t run)" != "function" ]; then - . scripts/helper.sh + . ./scripts/helper.sh fi # Make sure only root can run this installer script. diff --git a/remove.sh b/remove.sh index 480c071..2870961 100755 --- a/remove.sh +++ b/remove.sh @@ -32,7 +32,7 @@ BASEDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd ) # Include helper functions. if [ "$(type -t run)" != "function" ]; then - . scripts/helper.sh + . ./scripts/helper.sh fi # Make sure only root can run this installer script.