1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-22 05:40:08 +00:00

refresh .rake_tasks when lib/tasks changed (#5111)

This commit is contained in:
Aleksey Ivanov 2016-08-13 21:47:43 +03:00 committed by Marc Cornellà
parent 906a7731af
commit 51c10783e1

View file

@ -8,7 +8,19 @@ _rake_refresh () {
} }
_rake_does_task_list_need_generating () { _rake_does_task_list_need_generating () {
[[ ! -f .rake_tasks ]] || [[ Rakefile -nt .rake_tasks ]] [[ ! -f .rake_tasks ]] || [[ Rakefile -nt .rake_tasks ]] || (_is_rails_app && _tasks_changed)
}
_is_rails_app () {
[[ -e "bin/rails" ]] || [ -e "script/rails" ]
}
_tasks_changed () {
local is_changed=1
for file in lib/tasks/**/*.rake; do
if [[ $file -nt .rake_tasks ]]; then is_changed=0; fi
done
return is_changed
} }
_rake_generate () { _rake_generate () {