aboutsummaryrefslogtreecommitdiff
path: root/lib/util.bash
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util.bash')
-rw-r--r--lib/util.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.bash b/lib/util.bash
index eb7c9a8..92ff1bc 100644
--- a/lib/util.bash
+++ b/lib/util.bash
@@ -101,7 +101,7 @@ in_args() {
for arg in "$@"
do
- [[ $needle == $arg ]] && return 0
+ [[ $needle == "$arg" ]] && return 0
done
return 1