summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2018-09-14 09:59:10 -0400
committerScott Moser <smoser@ubuntu.com>2018-09-14 09:59:10 -0400
commit84bf2482ad569357541e94d8f7f90cf0cdd759e2 (patch)
tree0435e301bcbfdc0ba1e83038a0004e4db066b23a
parent12066fc8f6518d294501aa126b5332ea90c4896c (diff)
downloadcloud-init-git-84bf2482ad569357541e94d8f7f90cf0cdd759e2.tar.gz
bash_completion/cloud-init: fix shell syntax error.
A syntax error creeped in with commit c7555762f3a3.
-rw-r--r--bash_completion/cloud-init2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash_completion/cloud-init b/bash_completion/cloud-init
index b3a5ced3..6d01bf3a 100644
--- a/bash_completion/cloud-init
+++ b/bash_completion/cloud-init
@@ -63,7 +63,7 @@ _cloudinit_complete()
COMPREPLY=($(compgen -W "--help --network-data --kind --directory --output-kind" -- $cur_word))
;;
render)
- COMPREPLY=($(compgen -W "--help --instance-data --debug" -- $cur_word))
+ COMPREPLY=($(compgen -W "--help --instance-data --debug" -- $cur_word));;
schema)
COMPREPLY=($(compgen -W "--help --config-file --doc --annotate" -- $cur_word))
;;