1
0
mirror of https://github.com/docker/cli.git synced 2026-01-26 15:41:42 +03:00

Merge pull request #6612 from jo-so/master

completion/zsh: Allow multiple volumes of 'volume rm'
This commit is contained in:
Sebastiaan van Stijn
2025-11-05 13:27:15 +01:00
committed by GitHub

View File

@@ -2533,7 +2533,7 @@ __docker_volume_subcommand() {
_arguments $(__docker_arguments) \
$opts_help \
"($help -f --force)"{-f,--force}"[Force the removal of one or more volumes]" \
"($help -):volume:__docker_complete_volumes" && ret=0
"($help -)*:volumes:__docker_complete_volumes" && ret=0
;;
(help)
_arguments $(__docker_arguments) ":subcommand:__docker_volume_commands" && ret=0