diff --git a/completions/bash/cdist-completion.bash b/completions/bash/cdist-completion.bash index c6066ffb..6b58e2a2 100644 --- a/completions/bash/cdist-completion.bash +++ b/completions/bash/cdist-completion.bash @@ -38,7 +38,7 @@ _cdist() config|install) opts="-h --help -d --debug -v --verbose -b --beta \ -C --cache-path-pattern -c --conf-dir -f --file -i --initial-manifest -j --jobs \ - -n --dry-run -o --out-dir -p --parallel -s --sequential \ + -n --dry-run -o --out-dir -p --parallel -r --remote-out-dir -s --sequential \ --remote-copy --remote-exec" COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0 diff --git a/completions/zsh/_cdist b/completions/zsh/_cdist index f56c4ac7..082cad12 100644 --- a/completions/zsh/_cdist +++ b/completions/zsh/_cdist @@ -36,7 +36,7 @@ _cdist() esac ;; config|install) - opts=(-h --help -d --debug -v --verbose -b --beta -C --cache-path-pattern -c --conf-dir -f --file -i --initial-manifest -j --jobs -n --dry-run -o --out-dir -p --parallel -s --sequential --remote-copy --remote-exec) + opts=(-h --help -d --debug -v --verbose -b --beta -C --cache-path-pattern -c --conf-dir -f --file -i --initial-manifest -j --jobs -n --dry-run -o --out-dir -p --parallel -r --remote-out-dir -s --sequential --remote-copy --remote-exec) compadd "$@" -- $opts ;; *)