diff --git a/completions/bash/cdist-completion.bash b/completions/bash/cdist-completion.bash index 3d396bb4..c756fca8 100644 --- a/completions/bash/cdist-completion.bash +++ b/completions/bash/cdist-completion.bash @@ -36,10 +36,10 @@ _cdist() return 0 ;; config) - opts="-h --help -d --debug -v --verbose \ - -c --conf-dir -f --file -i --initial-manifest -n --dry-run \ - -o --out-dir -p --parallel -s --sequential --remote-copy \ - --remote-exec" + opts="-h --help -d --debug -v --verbose -b --enable-beta \ + -c --conf-dir -f --file -i --initial-manifest -j --jobs \ + -n --dry-run -o --out-dir -p --parallel -s --sequential \ + --remote-copy --remote-exec" COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0 ;; diff --git a/completions/zsh/_cdist b/completions/zsh/_cdist index 2bf324a6..18fda0f0 100644 --- a/completions/zsh/_cdist +++ b/completions/zsh/_cdist @@ -36,7 +36,7 @@ _cdist() esac ;; config) - opts=(-h --help -d --debug -v --verbose -c --conf-dir -f --file -i --initial-manifest -n --dry-run -o --out-dir -p --parallel -s --sequential --remote-copy --remote-exec) + opts=(-h --help -d --debug -v --verbose -b --enable-beta -c --conf-dir -f --file -i --initial-manifest -j --jobs -n --dry-run -o --out-dir -p --parallel -s --sequential --remote-copy --remote-exec) compadd "$@" -- $opts ;; *)