Fix file sourcing

This commit is contained in:
Edi Septriyanto
2021-08-13 09:25:49 +07:00
parent 4e5818ad2e
commit e89fd7e263
2 changed files with 2 additions and 2 deletions

View File

@@ -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.

View File

@@ -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.