diff options
-rwxr-xr-x | configs/baseline/build.sh | 2 | ||||
-rwxr-xr-x | configs/releng/build.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configs/baseline/build.sh b/configs/baseline/build.sh index 45e76cf..b86c7c8 100755 --- a/configs/baseline/build.sh +++ b/configs/baseline/build.sh @@ -10,7 +10,7 @@ arch=$(uname -m) work_dir=work out_dir=out -script_path=$(readlink -f "${0%/*}") +script_path="$( cd -P "$( dirname "$(readlink -f "$0")" )" && pwd )" umask 0022 diff --git a/configs/releng/build.sh b/configs/releng/build.sh index c787d30..7e8321e 100755 --- a/configs/releng/build.sh +++ b/configs/releng/build.sh @@ -13,7 +13,7 @@ out_dir=out gpg_key="" verbose="" -script_path=$(readlink -f "${0%/*}") +script_path="$( cd -P "$( dirname "$(readlink -f "$0")" )" && pwd )" umask 0022 |