aboutsummaryrefslogtreecommitdiffstats
path: root/script/purge-varnish
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2013-05-29 15:44:04 +0100
committerLouise Crow <louise.crow@gmail.com>2013-05-29 16:20:48 +0100
commitb4346ad162eb153fbe785cf9f6322f3e6305088a (patch)
tree50bcf67a5b354c4f2a3b31478f059ba64cefa9eb /script/purge-varnish
parent16c075c68159ef79dd196196a4171f54934f9c41 (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/purge-varnish')
-rwxr-xr-xscript/purge-varnish7
1 files changed, 4 insertions, 3 deletions
diff --git a/script/purge-varnish b/script/purge-varnish
index 7dcecd4f9..abc6daeaf 100755
--- a/script/purge-varnish
+++ b/script/purge-varnish
@@ -1,11 +1,12 @@
#!/bin/bash
-LOC=`dirname $0`
+TOP_DIR="$(dirname "$BASH_SOURCE")/.."
+cd "$TOP_DIR"
if [ "$1" == "--loop" ]
then
- rails runner 'PurgeRequest.purge_all_loop'
+ bundle exec rails runner 'PurgeRequest.purge_all_loop'
else
- rails runner 'PurgeRequest.purge_all'
+ bundle exec rails runner 'PurgeRequest.purge_all'
fi