diff options
author | EuAndreh <eu@euandre.org> | 2022-08-15 16:27:45 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-08-15 16:27:45 -0300 |
commit | 5a71b8f55f435bd8e90281f2692813f0280d6f6c (patch) | |
tree | 4a8afc903d6ecfe2d22abb2e87e7a19c2bd9683d /bin | |
parent | bin/status-bar: Add working version (diff) | |
download | dotfiles-5a71b8f55f435bd8e90281f2692813f0280d6f6c.tar.gz dotfiles-5a71b8f55f435bd8e90281f2692813f0280d6f6c.tar.xz |
bin/uri: Use single quote over double quote
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/uri | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -42,8 +42,8 @@ sub help($fh) { } for (@ARGV) { - last if $_ eq "--"; - if ($_ eq "--help") { + last if $_ eq '--'; + if ($_ eq '--help') { usage *STDOUT; help *STDOUT; exit; |