aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/update.sh')
-rwxr-xr-xbin/update.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/update.sh b/bin/update.sh
index 6c9ab78..1b98e9f 100755
--- a/bin/update.sh
+++ b/bin/update.sh
@@ -25,8 +25,9 @@ set -o pipefail
script_name="$( basename -- "${BASH_SOURCE[0]}" )"
readonly script_name
-script_dir="$( dirname -- "${BASH_SOURCE[0]}" )"
-script_dir="$( cd -- "$script_dir" && pwd )"
+script_path="$( realpath --canonicalize-existing -- "${BASH_SOURCE[0]}" )"
+readonly script_path
+script_dir="$( dirname -- "$script_path" )"
readonly script_dir
src_dir="$( cd -- "$script_dir/../src" && pwd )"
readonly src_dir