summaryrefslogtreecommitdiff
path: root/bin/custodian-queue
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-20 14:00:31 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-20 14:00:31 +0000
commit49aba5412a2c14903ae4427b40ed37904e08912f (patch)
treedd00b06dc5ab9a539d9ab07c6ed92bf1bdd2029e /bin/custodian-queue
parent71bf5129d357009d7a6f17d8f3e9583a9bfc61fc (diff)
Updated case statements for ruby1.9
Diffstat (limited to 'bin/custodian-queue')
-rwxr-xr-xbin/custodian-queue12
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/custodian-queue b/bin/custodian-queue
index f2003de..e75b5cc 100755
--- a/bin/custodian-queue
+++ b/bin/custodian-queue
@@ -67,17 +67,17 @@ if __FILE__ == $0 then
)
opts.each do |opt, arg|
case opt
- when "--monitor":
+ when "--monitor" then
$MONITOR = true
- when "--stats":
+ when "--stats" then
$STATS = true
- when "--flush":
+ when "--flush" then
$FLUSH = true
- when "--server":
+ when "--server" then
$SERVER = arg
- when "--help":
+ when "--help" then
$help = true
- when "--manual":
+ when "--manual" then
$manual = true
end
end