diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2009-02-18 11:21:57 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2009-02-18 11:21:57 +0000 |
commit | 9537a79fbf3853a34e3117722e2c107bf60e4496 (patch) | |
tree | b800e659deb8c98f8eebb1d84fedcf58b902b436 /Completion | |
parent | 4ae72f2255de439682444d2e0d33eefa3f2796de (diff) | |
download | zsh-9537a79fbf3853a34e3117722e2c107bf60e4496.tar.gz zsh-9537a79fbf3853a34e3117722e2c107bf60e4496.tar.xz zsh-9537a79fbf3853a34e3117722e2c107bf60e4496.zip |
Arkadiusz Miskiewicz <arekm@maven.pl>: 26573:
force compdump overwrite
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/compdump | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/compdump b/Completion/compdump index 03b929fc3..068383c22 100644 --- a/Completion/compdump +++ b/Completion/compdump @@ -132,7 +132,7 @@ print >> $_d_file print "typeset -gUa _comp_assocs" >> $_d_file print "_comp_assocs=( ${(qq)_comp_assocs} )" >> $_d_file -mv $_d_file ${_d_file%.$HOST.$$} +mv -f $_d_file ${_d_file%.$HOST.$$} unfunction compdump autoload -Uz compdump |