Skip to content

Commit feff62b

Browse files
temp fix weghalen in bootstrap
1 parent 217fc30 commit feff62b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/bootstrap-from-github.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project basedir="." name="bootstrapFromGithub" default="build">
3-
<!--
3+
<!--
44
ANT build script to start the build from the lib cache or, if that doesn't exist yet, download the tools from
55
Github first. It is assumed that this is a Nictiz repo.
66
The following parameters need to be present:
@@ -31,13 +31,13 @@
3131
</sequential>
3232
</macrodef>
3333
<overrideprop name="tool.version.actual" from="${ant.project.name}.tool.version" else="tool.version"/>
34-
34+
3535
<!-- Construct the path to the test scripts, either the locally defined dir or a new dir under "lib" -->
3636
<property name="testscripttools.repo.dir" location="${lib.dir}/${tool.reponame}/${tool.name}/${tool.version.actual}"/>
3737
<condition property="testscripttools.dir" value="${tool.localdir.abs}" else="${testscripttools.repo.dir}">
3838
<length string="${tool.localdir}" trim="true" when="greater" length="0"/>
3939
</condition>
40-
40+
4141
<!-- Check if we need to download the testscript tools repo from Github, which is needed if we don't have it
4242
already and if we didn't specify to use a local copy (we never download anything when using a local copy so we
4343
cannot accidentally override it). -->
@@ -47,12 +47,12 @@
4747
<length string="${tool.localdir}" trim="true" when="equal" length="0"/>
4848
<not>
4949
<available file="${testscripttools.dir}"/>
50-
</not>
50+
</not>
5151
</and>
5252
</condition>
5353
</target>
54-
55-
<!-- Download and extract the Nictiz testscript tools from Github if we don't have them already -->
54+
55+
<!-- Download and extract the Nictiz testscript tools from Github if we don't have them already -->
5656
<target name="get.toolrepo" depends="checkForRepoDownload" if="download.repo">
5757
<sequential>
5858
<echo>Downloading the testscript tools repo from Github</echo>
@@ -61,7 +61,7 @@
6161
<mkdir dir="${testscripttools.dir}/"/>
6262
<local name="zip.name"/>
6363
<property name="zip.name" value="${testscripttools.dir}/package.zip"/>
64-
<get src="https://github.com/jduwel/${tool.reponame}/archive/${tool.version.actual}.zip"
64+
<get src="https://github.com/nictiz/${tool.reponame}/archive/${tool.version.actual}.zip"
6565
dest="${zip.name}"/>
6666
<unzip src="${zip.name}" dest="${testscripttools.dir}" failOnEmptyArchive="true">
6767
<patternset>
@@ -78,5 +78,5 @@
7878
<target name="build" depends="get.toolrepo">
7979
<ant antfile="${testscripttools.dir}/${tool.antfile}" inheritAll="true" inheritRefs="true"/>
8080
</target>
81-
81+
8282
</project>

0 commit comments

Comments
 (0)