From b4346ad162eb153fbe785cf9f6322f3e6305088a Mon Sep 17 00:00:00 2001 From: Louise Crow Date: Wed, 29 May 2013 15:44:04 +0100 Subject: 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. --- script/alert-comment-on-request | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'script/alert-comment-on-request') diff --git a/script/alert-comment-on-request b/script/alert-comment-on-request index 1222eecf1..849f4a8d8 100755 --- a/script/alert-comment-on-request +++ b/script/alert-comment-on-request @@ -1,3 +1,4 @@ #!/bin/bash - +TOP_DIR="$(dirname "$BASH_SOURCE")/.." +cd "$TOP_DIR" bundle exec rails runner 'RequestMailer.alert_comment_on_request' -- cgit v1.2.3