Verified Commit 3987ab19 authored by Marc Vef's avatar Marc Vef
Browse files

Scripts: Make sure download/compile scripts are using an absolute path

parent 95169f6f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -91,8 +91,8 @@ if [[ ( -z ${1+x} ) || ( -z ${2+x} ) ]]; then
    usage_short
    exit
fi
SOURCE=$1
INSTALL=$2
SOURCE="$( readlink -f "${1}" )"
INSTALL="$( readlink -f "${2}" )"

# deal with optional arguments
if [ "${NA_LAYER}" == "" ]; then
+1 −1
Original line number Diff line number Diff line
@@ -109,7 +109,7 @@ if [[ -z ${1+x} ]]; then
    usage_short
    exit
fi
SOURCE=$1
SOURCE="$( readlink -f "${1}" )"

# optional arguments
if [ "${NA_LAYER}" == "" ]; then