diff options
| author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:19:15 +0000 | 
|---|---|---|
| committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:19:15 +0000 | 
| commit | a22b8e96ead33b0f97ed5243dbad7f7b6cd5135d (patch) | |
| tree | 3fe30365cc9d793c752653a59614b52009ef9336 /bin/custodian-enqueue | |
| parent | 7782df6020704f51ee2d6194d8d3b74f28a53401 (diff) | |
Prefer single-quotes when you don't need interpolation.
So "foo" is less good than 'foo'.
Diffstat (limited to 'bin/custodian-enqueue')
| -rwxr-xr-x | bin/custodian-enqueue | 26 | 
1 files changed, 13 insertions, 13 deletions
| diff --git a/bin/custodian-enqueue b/bin/custodian-enqueue index b1be84d..83e462e 100755 --- a/bin/custodian-enqueue +++ b/bin/custodian-enqueue @@ -70,23 +70,23 @@ if __FILE__ == $PROGRAM_NAME then    begin      opts = GetoptLong.new( -                          [ "--dump",  "-d", GetoptLong::NO_ARGUMENT ], -                          [ "--test",   GetoptLong::NO_ARGUMENT ], -                          [ "--file",  "-f", GetoptLong::REQUIRED_ARGUMENT ], -                          [ "--help",  "-h", GetoptLong::NO_ARGUMENT ], -                          [ "--manual","-m", GetoptLong::NO_ARGUMENT ] +                          [ '--dump',  '-d', GetoptLong::NO_ARGUMENT ], +                          [ '--test',   GetoptLong::NO_ARGUMENT ], +                          [ '--file',  '-f', GetoptLong::REQUIRED_ARGUMENT ], +                          [ '--help',  '-h', GetoptLong::NO_ARGUMENT ], +                          [ '--manual','-m', GetoptLong::NO_ARGUMENT ]                            )      opts.each do |opt, arg|        case opt -      when "--dump" then -          ENV["DUMP"] = "1" -      when "--test" then -          ENV["TEST"] = "1" -       when "--file" then -          ENV["FILE"] = arg -      when "--help" then +      when '--dump' then +          ENV['DUMP'] = '1' +      when '--test' then +          ENV['TEST'] = '1' +       when '--file' then +          ENV['FILE'] = arg +      when '--help' then            $help = true -      when "--manual" then +      when '--manual' then            $manual = true        end      end | 
