diff options
author | Louise Crow <louise.crow@gmail.com> | 2015-06-18 18:05:04 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2015-06-23 15:36:11 +0100 |
commit | cad675442468a2dde61fad7c78fffe437d1138db (patch) | |
tree | ae06a2d3f54f09e303fc620f572ef61fb00520a0 /script/handle-mail-replies | |
parent | b4990dc4d63d7035ae0cd42f0e52150611162f3d (diff) |
Use BASH_SOURCE to return the script path.
It is reliable in the case where the script is sourced from another
script.
Diffstat (limited to 'script/handle-mail-replies')
-rwxr-xr-x | script/handle-mail-replies | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/handle-mail-replies b/script/handle-mail-replies index 15454b311..267ad5632 100755 --- a/script/handle-mail-replies +++ b/script/handle-mail-replies @@ -1,4 +1,4 @@ #!/bin/bash -cd "`dirname "$0"`" +cd "`dirname "${BASH_SOURCE[0]}"`" exec bundle exec ./handle-mail-replies.rb "$@" |