diff options
| author | Steve Kemp <steve@steve.org.uk> | 2012-11-20 14:00:31 +0000 | 
|---|---|---|
| committer | Steve Kemp <steve@steve.org.uk> | 2012-11-20 14:00:31 +0000 | 
| commit | 49aba5412a2c14903ae4427b40ed37904e08912f (patch) | |
| tree | dd00b06dc5ab9a539d9ab07c6ed92bf1bdd2029e /bin/custodian-dequeue | |
| parent | 71bf5129d357009d7a6f17d8f3e9583a9bfc61fc (diff) | |
  Updated case statements for ruby1.9
Diffstat (limited to 'bin/custodian-dequeue')
| -rwxr-xr-x | bin/custodian-dequeue | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/bin/custodian-dequeue b/bin/custodian-dequeue index dd5daa6..70ddeda 100755 --- a/bin/custodian-dequeue +++ b/bin/custodian-dequeue @@ -84,21 +84,21 @@ if __FILE__ == $0 then                            )      opts.each do |opt, arg|        case opt -      when "--verbose": +      when "--verbose" then            ENV["VERBOSE"] = "1" -      when "--logfile": +      when "--logfile" then            $LOGFILE = arg -      when "--repeat": +      when "--repeat" then            ENV["REPEAT"] = arg -      when "--server": +      when "--server" then            $SERVER = arg -      when "--single": +      when "--single" then            ENV["SINGLE"] = "1" -      when "--fail": +      when "--fail" then            ENV["FAIL"] = "1" -      when "--help": +      when "--help" then            $help = true -      when "--manual": +      when "--manual" then            $manual = true        end      end  | 
