Commit b1c97bc7 authored by Doug Jones's avatar Doug Jones Committed by ncanceill
Browse files

Fix comparison used to determine if the cache is outdated.

parent ac1a321a
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -60,7 +60,7 @@ function in_gradle() {
############################################################################
_gradle_does_task_list_need_generating () {
[ ! -f .gradletasknamecache ] && return 0;
[ .gradletasknamecache -nt build.gradle ] && return 0;
[ build.gradle -nt .gradletasknamecache ] && return 0;
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