summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--get-m2.xml7
1 files changed, 4 insertions, 3 deletions
diff --git a/get-m2.xml b/get-m2.xml
index 6ded24743..af7feca67 100644
--- a/get-m2.xml
+++ b/get-m2.xml
@@ -58,9 +58,10 @@
<condition property="m2.antlib.typefound">
<typefound name="${m2.antlib.uri}:artifact" />
</condition>
+ <available property="m2.artifact.found" file="${m2.artifact}" type="file" />
</target>
- <target name="download-m2" depends="probe-m2" unless="m2.antlib.found">
+ <target name="download-m2" depends="probe-m2" unless="m2.artifact.found">
<require property="m2.antlib.url" />
<echo>Downloading to ${m2.dest.dir}</echo>
@@ -73,13 +74,13 @@
</target>
<target name="dont-validate-m2-checksum" depends="probe-m2"
- if="m2.antlib.found">
+ if="m2.artifact.found">
<property name="checksum.equal" value="true" />
</target>
<target name="validate-m2-checksum"
depends="download-m2,dont-validate-m2-checksum"
- if="m2.sha1.checksum" unless="m2.antlib.found">
+ if="m2.sha1.checksum" unless="m2.artifact.found">
<checksum file="${m2.artifact}"
algorithm="SHA"
property="${m2.sha1.checksum}"