mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-06 07:20:40 +01:00
Refactor for method in plugins/rake-fast/rake-fast.plugin.zsh
This commit is contained in:
@@ -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 () {
|
||||||
|
|||||||
Reference in New Issue
Block a user