mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +01:00
refresh .rake_tasks when lib/tasks changed (#5111)
This commit is contained in:
parent
906a7731af
commit
51c10783e1
1 changed files with 13 additions and 1 deletions
|
@ -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 () {
|
||||||
|
|
Loading…
Reference in a new issue