From fea454753efc4a673751131960c394254555d34a Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Mon, 9 Mar 2015 13:10:32 +0000 Subject: Don't use parenthesis aroudn conditions in an if. --- bin/custodian-dequeue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/custodian-dequeue') diff --git a/bin/custodian-dequeue b/bin/custodian-dequeue index a411746..48dea57 100755 --- a/bin/custodian-dequeue +++ b/bin/custodian-dequeue @@ -136,7 +136,7 @@ if __FILE__ == $PROGRAM_NAME then # # Single step? # - if ( ENV['SINGLE'] ) + if ENV['SINGLE'] worker.process_single_job exit(0) end @@ -144,7 +144,7 @@ if __FILE__ == $PROGRAM_NAME then # # Run until we see a failure? # - if ( ENV['FAIL'] ) + if ENV['FAIL'] worker.process_until_fail exit(0) end -- cgit v1.2.1