Commit 3a397328 authored by Moinak Ghosh's avatar Moinak Ghosh
Browse files

Change to epoch target in days instead of seconds.

parent 90762eee
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
zmodload zsh/datetime zmodload zsh/datetime
function _current_epoch() { function _current_epoch() {
echo $EPOCHSECONDS echo $(( $EPOCHSECONDS / 60 / 60 / 24 ))
} }
function _update_zsh_update() { function _update_zsh_update() {
...@@ -22,8 +22,6 @@ if [[ -z "$epoch_target" ]]; then ...@@ -22,8 +22,6 @@ if [[ -z "$epoch_target" ]]; then
epoch_target=13 epoch_target=13
fi fi
epoch_target_seconds=$((epoch_target * 86400))
[ -f ~/.profile ] && source ~/.profile [ -f ~/.profile ] && source ~/.profile
# Cancel upgrade if the current user doesn't have write permissions for the # Cancel upgrade if the current user doesn't have write permissions for the
...@@ -39,7 +37,7 @@ then ...@@ -39,7 +37,7 @@ then
fi fi
epoch_diff=$(($(_current_epoch) - $LAST_EPOCH)) epoch_diff=$(($(_current_epoch) - $LAST_EPOCH))
if [ $epoch_diff -gt $epoch_target_seconds ] if [ $epoch_diff -gt $epoch_target ]
then then
if [ "$DISABLE_UPDATE_PROMPT" = "true" ] if [ "$DISABLE_UPDATE_PROMPT" = "true" ]
then then
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment