diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-28 22:02:16 +0000 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-28 22:02:16 +0000 |
commit | 6804fd4ca717805c3ed128a18b136b9ff08b04b8 (patch) | |
tree | 0bbf85f4a1e97c8a84cf395a828530a4506041c7 /bin/update.sh | |
parent | allow bin/*.sh be symlinked (diff) | |
download | config-links-6804fd4ca717805c3ed128a18b136b9ff08b04b8.tar.gz config-links-6804fd4ca717805c3ed128a18b136b9ff08b04b8.zip |
bin/*.sh -> *.sh
Diffstat (limited to '')
-rwxr-xr-x | update.sh (renamed from bin/update.sh) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/update.sh b/update.sh index 1b98e9f..faea90d 100755 --- a/bin/update.sh +++ b/update.sh @@ -29,7 +29,7 @@ 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 )" +src_dir="$( cd -- "$script_dir/src" && pwd )" readonly src_dir . "$src_dir/common.sh" |