diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:10:32 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:10:32 +0000 |
commit | fea454753efc4a673751131960c394254555d34a (patch) | |
tree | 47732a1c331c236f8f082dc4f6f5a6c6d6dab058 /bin/custodian-dequeue | |
parent | edf0e675123e4869e2739d1bab0ed57b3b9f664c (diff) |
Don't use parenthesis aroudn conditions in an if.
Diffstat (limited to 'bin/custodian-dequeue')
-rwxr-xr-x | bin/custodian-dequeue | 4 |
1 files changed, 2 insertions, 2 deletions
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 |