1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 07:20:09 +00:00

Refactor for method in plugins/rake-fast/rake-fast.plugin.zsh

This commit is contained in:
Satoshi Ohmori 2015-10-16 04:49:53 +09:00
parent 57c2ac1e60
commit a1755e652c

View file

@ -8,17 +8,7 @@ _rake_refresh () {
}
_rake_does_task_list_need_generating () {
if [ ! -f .rake_tasks ]; then return 0;
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
[[ ! -f .rake_tasks ]] || [[ Rakefile -nt .rake_tasks ]]
}
_rake_generate () {