mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
Merge pull request #4500 from sachin21/modify_a_condition
[FIX ERROR] Refactor for function in plugins/rake-fast/rake-fast.plugin.zsh
This commit is contained in:
commit
405ee83af4
1 changed files with 1 additions and 11 deletions
|
@ -8,17 +8,7 @@ _rake_refresh () {
|
||||||
}
|
}
|
||||||
|
|
||||||
_rake_does_task_list_need_generating () {
|
_rake_does_task_list_need_generating () {
|
||||||
if [ ! -f .rake_tasks ]; then return 0;
|
[[ ! -f .rake_tasks ]] || [[ Rakefile -nt .rake_tasks ]]
|
||||||
else
|
|
||||||
if [[ "$OSTYPE" = darwin* ]]; then
|
|
||||||
accurate=$(stat -f%m .rake_tasks)
|
|
||||||
changed=$(stat -f%m Rakefile)
|
|
||||||
else
|
|
||||||
accurate=$(stat -c%Y .rake_tasks)
|
|
||||||
changed=$(stat -c%Y Rakefile)
|
|
||||||
fi
|
|
||||||
return $(expr $accurate '>=' $changed)
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_rake_generate () {
|
_rake_generate () {
|
||||||
|
|
Loading…
Reference in a new issue