diff options
author | Adam Luikart <me@adamluikart.com> | 2012-02-06 12:22:07 -0600 |
---|---|---|
committer | ncanceill <nicolas.canceill@ens-cachan.org> | 2014-05-24 19:40:30 +0200 |
commit | 9590b96b3f0dc8e2f4a87b632ff59eab28a0081e (patch) | |
tree | 8665b003bde34a79c3708f51d826a508e03c8986 /tools | |
parent | 8355233f7fc055d8446c7ebf50569202fa5bd1f5 (diff) | |
download | zsh-9590b96b3f0dc8e2f4a87b632ff59eab28a0081e.tar.gz zsh-9590b96b3f0dc8e2f4a87b632ff59eab28a0081e.tar.bz2 zsh-9590b96b3f0dc8e2f4a87b632ff59eab28a0081e.zip |
Write the update file even if `CLOBBER` is unset.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/check_for_upgrade.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/check_for_upgrade.sh b/tools/check_for_upgrade.sh index 0f8c9c391..5c8ce3a50 100644 --- a/tools/check_for_upgrade.sh +++ b/tools/check_for_upgrade.sh @@ -5,7 +5,7 @@ function _current_epoch() { } function _update_zsh_update() { - echo "LAST_EPOCH=$(_current_epoch)" > ~/.zsh-update + echo "LAST_EPOCH=$(_current_epoch)" >! ~/.zsh-update } function _upgrade_zsh() { |