From e6678b1a31f4b58b22efcae1feb7b86cb7399d0a Mon Sep 17 00:00:00 2001 From: Konstantin Demin Date: Fri, 12 Jul 2024 15:45:14 +0300 Subject: [PATCH] fix bd1f46de --- .config/zsh/alias/containers.zsh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/zsh/alias/containers.zsh b/.config/zsh/alias/containers.zsh index ac08a0f..763a303 100644 --- a/.config/zsh/alias/containers.zsh +++ b/.config/zsh/alias/containers.zsh @@ -32,7 +32,7 @@ z-pod-run() { z-pod-images() { local have_flags=0 case "$1" in - -* ) have_flags=1 ; break ;; + -* ) have_flags=1 ;; esac if [ ${have_flags} = 1 ] ; then z-pod images "$@" @@ -44,7 +44,7 @@ z-pod-images() { z-pod-ps() { local have_flags=0 case "$1" in - -* ) have_flags=1 ; break ;; + -* ) have_flags=1 ;; esac if [ ${have_flags} = 1 ] ; then z-pod ps "$@" @@ -56,7 +56,7 @@ z-pod-ps() { z-pod-top() { local have_flags=0 case "$1" in - -* ) have_flags=1 ; break ;; + -* ) have_flags=1 ;; esac if [ ${have_flags} = 1 ] ; then z-pod top "$@"