Move get-protobuf later in update_dependencies

It invokes kotlinc, so should happen after the bootstrap compiler is downloaded
This commit is contained in:
Alexander Udalov
2016-06-17 17:23:19 +03:00
parent 5ccbf47531
commit 3fa87fe4de
+2 -4
View File
@@ -197,9 +197,6 @@
<get src="http://jarjar.googlecode.com/files/jarjar-1.4.jar" dest="${dependencies}/download/jarjar-1.4.jar" usetimestamp="true"/>
<copy file="${dependencies}/download/jarjar-1.4.jar" tofile="${dependencies}/jarjar.jar" overwrite="true"/>
<!-- Protocol Buffers -->
<get-protobuf-and-rename-packages/>
<!-- ant 1.8.2 -->
<get-ant-library version="1.8.2" folderName="ant-1.8"/>
@@ -307,7 +304,6 @@
<available file="${dependencies}/bootstrap-compiler/Kotlin" property="have.bootstrap.compiler"/>
<fail message="Bootstrap compiler is expected to be downloaded to '${dependencies}/bootstrap-compiler' by TeamCity" unless:set="have.bootstrap.compiler"/>
<echo message="Bootstrap compiler found in '${dependencies}/bootstrap-compiler'" if:set="have.bootstrap.compiler"/>
</sequential>
<local name="bootstrap.need.chmod"/>
@@ -324,6 +320,8 @@
<arg line="-name 'kotlin*' ! -name '*.bat' -exec chmod a+x '{}' ;"/>
</exec>
<get-protobuf-and-rename-packages/>
<download-or-build-markdown-parser/>
</target>