You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 23, 2018. It is now read-only.
Is it intentional that the validate routine is hard coded to a single file specified in #file.root.page# ? <!-- Validate target, run separately --> <target name="validate"> <apply dir="${dir.source}/" executable="java" parallel="false"> <fileset dir="./${dir.source}/"> <include name="${file.root.page}"/> </fileset>
Should it instead loop over all the files specified in file.pages? Or is the intent to simply call it multiple times as a separate ant-call, e.g. ant validate -Dfile.root.page=index2.html
The text was updated successfully, but these errors were encountered:
Is it intentional that the validate routine is hard coded to a single file specified in #file.root.page# ?
<!-- Validate target, run separately --> <target name="validate"> <apply dir="${dir.source}/" executable="java" parallel="false"> <fileset dir="./${dir.source}/"> <include name="${file.root.page}"/> </fileset>
Should it instead loop over all the files specified in file.pages? Or is the intent to simply call it multiple times as a separate ant-call, e.g.
ant validate -Dfile.root.page=index2.html
The text was updated successfully, but these errors were encountered: