1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-30 23:24:47 +01:00

fix globbing

This commit is contained in:
Frederick Zhang
2019-10-23 19:53:05 +11:00
parent 23f1c44ae2
commit aad3bb04a8

View File

@@ -25,7 +25,11 @@ function _do_sudo() {
shift
break
else
args+=( $1 )
if ((__do_sudo_glob)); then
args+=( $~==1 )
else
args+=( $==1 )
fi
shift
fi
;;