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 | 90070510d4b3913e3f18e05e57c9b5a3170adde5 (patch) | |
tree | 5b1483ae7c585bcd9019339b82dc1b442e46e84a /bin/custodian-queue | |
parent | a4992f4396d593c0a496c6da9c08d937d1445857 (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-queue')
-rwxr-xr-x | bin/custodian-queue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/custodian-queue b/bin/custodian-queue index 978cbda..ed2c3be 100755 --- a/bin/custodian-queue +++ b/bin/custodian-queue @@ -52,7 +52,7 @@ require 'custodian/queue' # # Entry-point to our code. # -if __FILE__ == $0 then +if __FILE__ == $PROGRAM_NAME then $FLUSH = false $STATS = false |