Commit 7f636ba5 authored by Chris Peterson's avatar Chris Peterson
Browse files

Backwards logic in newer check.

Regen .ant_targets only if it's newer than build.xml? Yeah, that seems wrong.
parent 550ccca9
_ant_does_target_list_need_generating () {
[ ! -f .ant_targets ] && return 0;
[ .ant_targets -nt build.xml ] && return 0;
[ build.xml -nt .ant_targets ] && 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