aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-08-15 16:27:45 -0300
committerEuAndreh <eu@euandre.org>2022-08-15 16:27:45 -0300
commit5a71b8f55f435bd8e90281f2692813f0280d6f6c (patch)
tree4a8afc903d6ecfe2d22abb2e87e7a19c2bd9683d
parentbin/status-bar: Add working version (diff)
downloaddotfiles-5a71b8f55f435bd8e90281f2692813f0280d6f6c.tar.gz
dotfiles-5a71b8f55f435bd8e90281f2692813f0280d6f6c.tar.xz
bin/uri: Use single quote over double quote
-rwxr-xr-xbin/uri4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/uri b/bin/uri
index 5930c39..5466c09 100755
--- a/bin/uri
+++ b/bin/uri
@@ -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;