diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2022-01-01 02:26:11 -0600 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2022-01-01 02:26:11 -0600 |
commit | 49edbf438ed690c76e6b2af80368c59404cf0167 (patch) | |
tree | 129b3adb2f5f39a1329a426a3b7d51ed2c2290c1 /plugins/pip/_pip | |
parent | 1bc186dabe12b3d01b2257e82f3a104c48b8b3c7 (diff) | |
parent | 78c91ccbf99c77bd4d9cdb74279a40776721f66d (diff) | |
download | zsh-49edbf438ed690c76e6b2af80368c59404cf0167.tar.gz zsh-49edbf438ed690c76e6b2af80368c59404cf0167.tar.bz2 zsh-49edbf438ed690c76e6b2af80368c59404cf0167.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'plugins/pip/_pip')
-rw-r--r-- | plugins/pip/_pip | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pip/_pip b/plugins/pip/_pip index a5adead4a..e03be6afe 100644 --- a/plugins/pip/_pip +++ b/plugins/pip/_pip @@ -13,7 +13,7 @@ _pip_all() { } _pip_installed() { - installed_pkgs=(`pip freeze | cut -d '=' -f 1`) + installed_pkgs=($($service freeze | cut -d '=' -f 1)) } local -a _1st_arguments |