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.