diff options
author | Gerhard Lazu <mail@gerhardlazu.com> | 2009-10-11 09:50:08 +0100 |
---|---|---|
committer | Gerhard Lazu <mail@gerhardlazu.com> | 2009-10-11 09:50:08 +0100 |
commit | fafa15676a8f398c95b909f719b07349df2c7d5b (patch) | |
tree | a29270751ef24c39cbd52c090c9ace43e9288e36 | |
parent | 2289cacecbf027e71380ab0c349dee6f902e7b65 (diff) | |
download | zsh-fafa15676a8f398c95b909f719b07349df2c7d5b.tar.gz zsh-fafa15676a8f398c95b909f719b07349df2c7d5b.tar.bz2 zsh-fafa15676a8f398c95b909f719b07349df2c7d5b.zip |
Replaced source with .
-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 feb999aff..5c212b6fa 100644 --- a/tools/check_for_upgrade.sh +++ b/tools/check_for_upgrade.sh @@ -4,7 +4,7 @@ current_epoch=$(($(date +%s) / 60 / 60 / 24)) if [ -f ~/.zsh-update ] then - source ~/.zsh-update + . ~/.zsh-update epoch_diff=$(($current_epoch - $LAST_EPOCH)) if [ $epoch_diff -gt 6 ] then |