Commit 935f1914 authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #3419 from mcornella/fix-cake-target-cache

[Plugin: cake] switch newer-than logic to get the desired behavior
parents c3eb5483 e6045879
...@@ -15,7 +15,7 @@ _cake_does_target_list_need_generating () { ...@@ -15,7 +15,7 @@ _cake_does_target_list_need_generating () {
fi fi
[ ! -f ${_cake_task_cache_file} ] && return 0; [ ! -f ${_cake_task_cache_file} ] && return 0;
[ ${_cake_task_cache_file} -nt Cakefile ] && return 0; [ Cakefile -nt ${_cake_task_cache_file} ] && return 0;
return 1; return 1;
} }
......
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