Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
90762eee
Commit
90762eee
authored
Sep 17, 2014
by
Moinak Ghosh
Browse files
Convert epoch_target from days to seconds.
parent
5f38a537
Changes
1
Hide whitespace changes
Inline
Side-by-side
tools/check_for_upgrade.sh
View file @
90762eee
...
...
@@ -22,6 +22,8 @@ if [[ -z "$epoch_target" ]]; then
epoch_target
=
13
fi
epoch_target_seconds
=
$((
epoch_target
*
86400
))
[
-f
~/.profile
]
&&
source
~/.profile
# Cancel upgrade if the current user doesn't have write permissions for the
...
...
@@ -37,7 +39,7 @@ then
fi
epoch_diff
=
$((
$(
_current_epoch
)
-
$LAST_EPOCH
))
if
[
$epoch_diff
-gt
$epoch_target
]
if
[
$epoch_diff
-gt
$epoch_target
_seconds
]
then
if
[
"
$DISABLE_UPDATE_PROMPT
"
=
"true"
]
then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment