mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
Use [ -nt ] instead of stat -f%m to check cache files.
This commit is contained in:
parent
0ab0e67ecf
commit
300f94cb0e
4 changed files with 13 additions and 42 deletions
|
|
@ -14,12 +14,9 @@ _cake_does_target_list_need_generating () {
|
|||
return 1;
|
||||
fi
|
||||
|
||||
if [ ! -f ${_cake_task_cache_file} ]; then return 0;
|
||||
else
|
||||
accurate=$(stat -f%m $_cake_task_cache_file)
|
||||
changed=$(stat -f%m Cakefile)
|
||||
return $(expr $accurate '>=' $changed)
|
||||
fi
|
||||
[ ! -f ${_cake_task_cache_file} ] && return 0;
|
||||
[ ${_cake_task_cache_file} -nt Cakefile ] && return 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
_cake () {
|
||||
|
|
@ -33,4 +30,4 @@ _cake () {
|
|||
fi
|
||||
}
|
||||
|
||||
compdef _cake cake
|
||||
compdef _cake cake
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue