浏览代码

User documentation: no CRC for downloaded unversioned wikitext lib

Rainer Klute 9 年之前
父节点
当前提交
c2c8bb5f49
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      plugins/org.yakindu.sct.doc.user/build.xml

+ 6 - 0
plugins/org.yakindu.sct.doc.user/build.xml

@@ -131,6 +131,10 @@
         <sequential unless:set="wikitext.zip.file.exists">
             <mkdir dir="${lib.dir}" />
             <get src="${wikitext.zip.src}" dest="${wikitext.zip.file}" skipexisting="true" usetimestamp="true" />
+
+            <!-- Unfortunately there's currently no versioned release. Until there is one (if ever)
+                 checking the checksum is disabled. -->
+            <!--
             <fail message="Checksum mismatch for ${wikitext.zip.file}. Please delete it and rerun ant to redownload.">
                 <condition>
                     <not>
@@ -141,6 +145,8 @@
                     </not>
                 </condition>
             </fail>
+            -->
+
             <unzip dest="${lib.dir}" src="${wikitext.zip.file}" />
         </sequential>
     </target>