Skip to content

Commit 9d9dd4d

Browse files
committed
Switch to use depends on init
1 parent 841b3f1 commit 9d9dd4d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

build.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@
171171
* *
172172
****************************************************************-->
173173

174-
<target name="init">
174+
<target name="init" depends="validate.config">
175175
<description>
176176
TARGET: init
177177
This target initializes the static search indexing process. It first
@@ -607,15 +607,15 @@ create a new file? (o=overwrite, n=new)"
607607
</target>
608608

609609
<target name="all"
610-
depends="validate.config, init, validate, config, tokenize, json, buildJS, copyFiles, makeSearchPage, report, clean">
610+
depends="init, validate, config, tokenize, json, buildJS, copyFiles, makeSearchPage, report, clean">
611611
<description>
612612
TARGET: all
613613
Default target for running the entire static search creation process.
614614
</description>
615615
</target>
616616

617617
<target name="allButValidate"
618-
depends="validate.config, init, config, tokenize, json, buildJS, copyFiles, makeSearchPage, report, clean">
618+
depends="init, config, tokenize, json, buildJS, copyFiles, makeSearchPage, report, clean">
619619
<description>
620620
TARGET: allButValidate
621621
Target to override validation, which is helpful in cases
@@ -624,7 +624,7 @@ create a new file? (o=overwrite, n=new)"
624624
</target>
625625

626626
<target name="test"
627-
depends="validate.config, init, validate, config, tokenize, json, buildJS, copyFiles, makeSearchPage, makeDebugSearchPage, makeManualDebugSearchPage, report">
627+
depends="init, validate, config, tokenize, json, buildJS, copyFiles, makeSearchPage, makeDebugSearchPage, makeManualDebugSearchPage, report">
628628
<description>
629629
TARGET: test
630630
Target that runs the whole process, but does not clean up the
@@ -633,7 +633,7 @@ create a new file? (o=overwrite, n=new)"
633633
</target>
634634

635635
<target name="basic"
636-
depends="validate.config, init, validate, config, tokenize, json, buildJS, copyFiles, makeSearchPage, clean">
636+
depends="init, validate, config, tokenize, json, buildJS, copyFiles, makeSearchPage, clean">
637637
<description>
638638
TARGET: basic
639639
Target that runs the whole process other than the report creation.

0 commit comments

Comments
 (0)