aboutsummaryrefslogtreecommitdiffstats
path: root/script/handle-mail-replies
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2015-06-18 18:05:04 +0100
committerLouise Crow <louise.crow@gmail.com>2015-06-23 15:43:55 +0100
commiteed8b64bdbdcc69dc8ea44a9d69af830d6970573 (patch)
tree8302661b65355010ceacbf305b1e11b6bce4e06e /script/handle-mail-replies
parenta125b0307c659c135c7ffe8b48d79dd702c8b422 (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-xscript/handle-mail-replies2
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 "$@"