From 84bf2482ad569357541e94d8f7f90cf0cdd759e2 Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Fri, 14 Sep 2018 09:59:10 -0400 Subject: bash_completion/cloud-init: fix shell syntax error. A syntax error creeped in with commit c7555762f3a3. --- bash_completion/cloud-init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) ;; -- cgit v1.2.3