diff options
author | Robin Houston <robin.houston@gmail.com> | 2012-06-03 14:04:58 +0100 |
---|---|---|
committer | Robin Houston <robin.houston@gmail.com> | 2012-06-03 14:04:58 +0100 |
commit | b357d29826a67ad527c63d823290226ae2d0c871 (patch) | |
tree | 7b7f3fb020b9066300fa61da9797591cf8372f01 /script/alert-comment-on-request | |
parent | a4b739fde6a9da0a72c6171dad020579604b6757 (diff) |
Make the scripts bundler-aware
Diffstat (limited to 'script/alert-comment-on-request')
-rwxr-xr-x | script/alert-comment-on-request | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/alert-comment-on-request b/script/alert-comment-on-request index bfca2663f..74782aa13 100755 --- a/script/alert-comment-on-request +++ b/script/alert-comment-on-request @@ -1,7 +1,7 @@ #!/bin/bash -LOC=`dirname $0` +cd "`dirname "$0"`" -"$LOC/runner" 'RequestMailer.alert_comment_on_request' +bundle exec ./runner 'RequestMailer.alert_comment_on_request' |