Commit 19dfba6a authored by iwakeh's avatar iwakeh 🌴 Committed by Karsten Loesing
Browse files

Added check that failes, when jars are not signed.

Currently is failes.  Part of task-20712.
parent 58945c03
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -295,6 +295,16 @@
        <pathelement path="${warfile}"/>
      </path>
    </signjar>
    <fail message="Signing failed." >
      <condition>
        <not>
          <and>
            <issigned file="${onionoo.jarfile}"/>
            <issigned file="${warfile}"/>
          </and>
        </not>
      </condition>
    </fail>
  </target>

  <target name="tar" depends="signjar">