summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorJohn Southworth <john.southworth@vyatta.com>2011-10-06 16:20:12 -0500
committerJohn Southworth <john.southworth@vyatta.com>2011-10-06 16:20:35 -0500
commit5de548e5ee8fd5fc9873963ae4a9d477b2bfdcb3 (patch)
tree89a14aace737cf68e2e519529cd79f9a2b676c8b /etc
parent9e07fa4ddef970f4e6370d6513051239811f0534 (diff)
downloadvyatta-op-5de548e5ee8fd5fc9873963ae4a9d477b2bfdcb3.tar.gz
vyatta-op-5de548e5ee8fd5fc9873963ae4a9d477b2bfdcb3.zip
Bugfix 6747: use bash conditional expressions instead of posix test expressions when doing comparisons. The conditional expressions don't do as much expansion as the test expression does, and are the modern variant
Diffstat (limited to 'etc')
-rw-r--r--etc/bash_completion.d/vyatta-op2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/bash_completion.d/vyatta-op b/etc/bash_completion.d/vyatta-op
index 48074dd..815b264 100644
--- a/etc/bash_completion.d/vyatta-op
+++ b/etc/bash_completion.d/vyatta-op
@@ -514,7 +514,7 @@ _vyatta_pipe_completion ()
_vyatta_pipe_noncompletions=()
for word in "$@"; do
- if [ "$found" == "1" -o "$word" == "|" ]; then
+ if [[ "$found" == "1" || "$word" == "|" ]]; then
pipe_cmd+=( "$word" )
found=1
fi