mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Merge pull request #2658 from leifcr/rake-fast-issue
Plugin: Rake-fast: Support both *nix and Darwin
This commit is contained in:
commit
861d380aa3
1 changed files with 7 additions and 2 deletions
|
@ -10,8 +10,13 @@ _rake_refresh () {
|
||||||
_rake_does_task_list_need_generating () {
|
_rake_does_task_list_need_generating () {
|
||||||
if [ ! -f .rake_tasks ]; then return 0;
|
if [ ! -f .rake_tasks ]; then return 0;
|
||||||
else
|
else
|
||||||
accurate=$(stat -f%m .rake_tasks)
|
if [[ $(uname -s) == 'Darwin' ]]; then
|
||||||
changed=$(stat -f%m Rakefile)
|
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)
|
return $(expr $accurate '>=' $changed)
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue