diff options
author | dongweiming <ciici123@gmail.com> | 2013-07-03 22:29:42 +0800 |
---|---|---|
committer | dongweiming <ciici123@gmail.com> | 2013-07-03 22:29:42 +0800 |
commit | 426f5f483925f5bd9d3f78fa03d6f7d9818bb288 (patch) | |
tree | d56f424efe9ff22d7b10a759c11c97a35e1b914a /plugins/powify | |
parent | 46d4606e66c8060d281f181db8e8fdae4c264290 (diff) | |
download | zsh-426f5f483925f5bd9d3f78fa03d6f7d9818bb288.tar.gz zsh-426f5f483925f5bd9d3f78fa03d6f7d9818bb288.tar.bz2 zsh-426f5f483925f5bd9d3f78fa03d6f7d9818bb288.zip |
Update powify for displayed parameter is not enough, and when there is no directory error
Diffstat (limited to 'plugins/powify')
-rw-r--r-- | plugins/powify/_powify | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/powify/_powify b/plugins/powify/_powify index d23c46513..9507f400e 100644 --- a/plugins/powify/_powify +++ b/plugins/powify/_powify @@ -1,7 +1,7 @@ #compdef powify _powify_all_servers() { - all_servers=(`ls $HOME/.pow/`) + all_servers=(`ls $HOME/.pow/ 2>/dev/null`) } local -a all_servers @@ -30,7 +30,7 @@ fi case "$words[1]" in server) - _values \ + _values , \ 'install[install pow server]' \ 'reinstall[reinstall pow server]' \ 'update[update pow server]' \ @@ -45,7 +45,7 @@ case "$words[1]" in 'config[print the current server configuration]' \ 'logs[tails the pow server logs]' ;; utils) - _values \ + _values , \ 'install[install powify.dev server management tool]' \ 'reinstall[reinstall powify.dev server management tool]' \ 'uninstall[uninstall powify.dev server management tool]' ;; |