diff options
author | Louise Crow <louise.crow@gmail.com> | 2013-05-29 15:44:04 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-05-29 16:20:48 +0100 |
commit | b4346ad162eb153fbe785cf9f6322f3e6305088a (patch) | |
tree | 50bcf67a5b354c4f2a3b31478f059ba64cefa9eb /script/alert-new-response-reminders | |
parent | 16c075c68159ef79dd196196a4171f54934f9c41 (diff) |
Now that runner is invoked via the rails command and not directly from the script directory, it's more important to cd to the app directory in order to pick up the bundler gemfile. Fixes #964.
Diffstat (limited to 'script/alert-new-response-reminders')
-rwxr-xr-x | script/alert-new-response-reminders | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/script/alert-new-response-reminders b/script/alert-new-response-reminders index 97f558f43..148706d49 100755 --- a/script/alert-new-response-reminders +++ b/script/alert-new-response-reminders @@ -1,3 +1,4 @@ #!/bin/bash - +TOP_DIR="$(dirname "$BASH_SOURCE")/.." +cd "$TOP_DIR" bundle exec rails runner 'RequestMailer.alert_new_response_reminders' |