diff options
author | Scott Moser <smoser@ubuntu.com> | 2018-09-14 09:59:10 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2018-09-14 09:59:10 -0400 |
commit | 84bf2482ad569357541e94d8f7f90cf0cdd759e2 (patch) | |
tree | 0435e301bcbfdc0ba1e83038a0004e4db066b23a | |
parent | 12066fc8f6518d294501aa126b5332ea90c4896c (diff) | |
download | vyos-cloud-init-84bf2482ad569357541e94d8f7f90cf0cdd759e2.tar.gz vyos-cloud-init-84bf2482ad569357541e94d8f7f90cf0cdd759e2.zip |
bash_completion/cloud-init: fix shell syntax error.
A syntax error creeped in with commit c7555762f3a3.
-rw-r--r-- | bash_completion/cloud-init | 2 |
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)) ;; |