Skip to content

Commit

Permalink
check-dependencies.xml: fixed two typos in target names
Browse files Browse the repository at this point in the history
  • Loading branch information
dbessono committed Jun 30, 2022
1 parent 1617d48 commit 269f060
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/check-dependencies.xml
Expand Up @@ -33,11 +33,11 @@
<!-- servlet-api -->
<target name="verify-servlet-api">
<available file="${servletjar}" type="file" property="servlet.present"/>
<antcall target="compile-sevlet-warning"/>
<antcall target="compile-servlet-warning"/>
<antcall target="checksum-servlet-warning"/>
</target>

<target name="compile-sevlet-warning" unless="servlet.present">
<target name="compile-servlet-warning" unless="servlet.present">
<echo message="${servlet.missing}"/>
</target>

Expand All @@ -60,7 +60,7 @@
<available file="${asmcommonsjar}" type="file" property="asm.commons.present"/>
<available file="${junitlib}" type="file" property="junitlib.present"/>

<condition property="jar.junit.dependecies.present">
<condition property="jar.junit.dependencies.present">
<and>
<available file="${asmjar}" type="file"/>
<available file="${asmcommonsjar}" type="file"/>
Expand All @@ -73,7 +73,7 @@
<antcall target="checksum-junitlib-warning"/>
</target>

<target name="compile-junit-warning" unless="jar.junit.dependecies.present">
<target name="compile-junit-warning" unless="jar.junit.dependencies.present">
<echo message="${junit.libs.missing}"/>
</target>

Expand Down

0 comments on commit 269f060

Please sign in to comment.