Commit 2277967e authored by Aleksey Ivanov's avatar Aleksey Ivanov Committed by Marc Cornellà
Browse files

Fix _tasks_changed algorithm in rake-fast plugin

parent 2ab67382
...@@ -16,11 +16,16 @@ _is_rails_app () { ...@@ -16,11 +16,16 @@ _is_rails_app () {
} }
_tasks_changed () { _tasks_changed () {
local is_changed=1 local -a paths
for file in lib/tasks/**/*.rake; do paths=(lib/tasks lib/tasks/**/*(N))
if [[ $file -nt .rake_tasks ]]; then is_changed=0; fi
for path in $paths; do
if [[ "$path" -nt .rake_tasks ]]; then
return 0
fi
done done
return is_changed
return 1
} }
_rake_generate () { _rake_generate () {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment