From fdb5aa7bb41c9a11a2dfdcdb12f00f95f37e2072 Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Fri, 22 Apr 2016 21:23:32 +0300 Subject: Updated to fix rubocop warnings. --- bin/custodian-dequeue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'bin/custodian-dequeue') diff --git a/bin/custodian-dequeue b/bin/custodian-dequeue index 8896b14..b066e18 100755 --- a/bin/custodian-dequeue +++ b/bin/custodian-dequeue @@ -29,12 +29,12 @@ if __FILE__ == $PROGRAM_NAME begin opts = GetoptLong.new( - ['--help', '-h', GetoptLong::NO_ARGUMENT], - ['--manual', '-m', GetoptLong::NO_ARGUMENT], - ['--fail', '-f', GetoptLong::NO_ARGUMENT], - ['--single', '-s', GetoptLong::NO_ARGUMENT], + ['--help', '-h', GetoptLong::NO_ARGUMENT], + ['--manual', '-m', GetoptLong::NO_ARGUMENT], + ['--fail', '-f', GetoptLong::NO_ARGUMENT], + ['--single', '-s', GetoptLong::NO_ARGUMENT], ['--verbose', '-v', GetoptLong::NO_ARGUMENT] - ) + ) opts.each do |opt, _arg| case opt when '--verbose' then @@ -73,7 +73,7 @@ if __FILE__ == $PROGRAM_NAME # # Single step? # - if ENV['SINGLE'] + if ENV['SINGLE'] worker.process_single_job exit(0) end @@ -81,7 +81,7 @@ if __FILE__ == $PROGRAM_NAME # # Run until we see a failure? # - if ENV['FAIL'] + if ENV['FAIL'] worker.process_until_fail exit(0) end -- cgit v1.2.3