aboutsummaryrefslogtreecommitdiffstats
path: root/irc.c
diff options
context:
space:
mode:
Diffstat (limited to 'irc.c')
0 files changed, 0 insertions, 0 deletions
ion value='hotfix/0.18.0.2'>hotfix/0.18.0.2 Unnamed repository; edit this file 'description' to name the repository.MimesBrønn
aboutsummaryrefslogtreecommitdiffstats
path: root/script/purge-varnish
blob: abc6daeaf0a3763aecfef3a28bec74dd9d917fb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

TOP_DIR="$(dirname "$BASH_SOURCE")/.."
cd "$TOP_DIR"

if [ "$1" == "--loop" ]
then
  bundle exec rails runner 'PurgeRequest.purge_all_loop'
else
  bundle exec rails runner 'PurgeRequest.purge_all'
fi