diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-21 17:46:48 +0000 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-21 17:46:51 +0000 |
commit | a274973ff3ec0a1ab5ecde5a63b1bb33996fecb4 (patch) | |
tree | e3ec3a8dade0749662e79a0c30050c6446563753 /links-update | |
parent | t/i: call links-update twice, just in case (diff) | |
download | config-links-a274973ff3ec0a1ab5ecde5a63b1bb33996fecb4.tar.gz config-links-a274973ff3ec0a1ab5ecde5a63b1bb33996fecb4.zip |
realpath -> readlink
I have an exteremely retarded work machine which bundles its own
realpath for no reason. A quick fix is to use readlink instead.
Diffstat (limited to 'links-update')
-rwxr-xr-x | links-update | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/links-update b/links-update index 322cd49..0d0630c 100755 --- a/links-update +++ b/links-update @@ -25,7 +25,7 @@ shopt -s lastpipe script_name="$( basename -- "${BASH_SOURCE[0]}" )" readonly script_name -script_path="$( realpath --canonicalize-existing -- "${BASH_SOURCE[0]}" )" +script_path="$( readlink --canonicalize-existing -- "${BASH_SOURCE[0]}" )" readonly script_path script_dir="$( dirname -- "$script_path" )" readonly script_dir |