diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-17 23:47:21 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-04-17 14:46:10 -0400 |
commit | e4e5a028843316edf73cae4ac70d9df3cf8e1565 (patch) | |
tree | b51b782a9ecc247fb00c4164a43dd1b5019918ae /db-move | |
parent | a2891a08c0cde48d966b037503c24b0d8f5b5f6d (diff) |
Consistently use "$(dirname "$(readlink -e "$0")")"
This does correct handling of
- executing a program by symlink
- any weird characters in the full path
- I'm sure there's another case I thought about when I originally did
this.
Diffstat (limited to 'db-move')
-rwxr-xr-x | db-move | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ #!/bin/bash -. "$(dirname "$0")/config" -. "$(dirname "$0")/db-functions" +. "$(dirname "$(readlink -e "$0")")/config" +. "$(dirname "$(readlink -e "$0")")/db-functions" if [ $# -lt 3 ]; then msg "usage: %s <repo-from> <repo-to> <pkgname|pkgbase> ..." "${0##*/}" |