diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 12:36:53 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 12:36:53 +0000 |
commit | 0e158a3b400c324e35e0617d04508f375a86c633 (patch) | |
tree | 863748360ca739d476956eaded84f3bd134dbe7e /bin/custodian-dequeue | |
parent | a763bc51e8cee9a1ab972e39616275f527192454 (diff) |
Use long-names
Instead of "$0" use $PROGRAM_NAME, instead of $! use "$LOAD_PATH". This
is more explicit and less-magic.
Flagged by rubocop
Diffstat (limited to 'bin/custodian-dequeue')
-rwxr-xr-x | bin/custodian-dequeue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/custodian-dequeue b/bin/custodian-dequeue index 46a62da..349ff31 100755 --- a/bin/custodian-dequeue +++ b/bin/custodian-dequeue @@ -57,7 +57,7 @@ require 'custodian/worker' # # Entry-point to our code. # -if __FILE__ == $0 then +if __FILE__ == $PROGRAM_NAME then $help = false $manual = false |