From 9c2e63cd2fc3441a22ceb6585d79c19c2c364cb0 Mon Sep 17 00:00:00 2001
From: Don Brutzman <brutzman@nps.edu>
Date: Thu, 2 Jul 2020 13:22:57 -0700
Subject: [PATCH] fix parameter reference, avoid .x3d.x3d reference

---
 build.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/build.xml b/build.xml
index 7cf04651ae..6e66a4d09c 100644
--- a/build.xml
+++ b/build.xml
@@ -3866,13 +3866,13 @@ app.replica.args=-mode scene -mipmaps -antialias 8 -anisotropicDegree 16 -verbos
                     <mapper dir="." type="glob" from="*.x3d" to="*.html"/>
                     <sequential>
                         <echo message="check well-formedness of original model..."/>
-                        <xmlvalidate file="@{file.path.name}.x3d" failonerror="false" warn="true" lenient="true"/>
+                        <xmlvalidate file="@{file.path.name}" failonerror="false" warn="true" lenient="true"/>
                         <echo message="check DTD validation  of original model..."/>
-                        <xmlvalidate file="@{file.path.name}.x3d" failonerror="false" warn="true">
+                        <xmlvalidate file="@{file.path.name}" failonerror="false" warn="true">
                             <xmlcatalog refid="X3dCatalog"/>
                         </xmlvalidate>
                         <echo message="check schema validation of original model..."/>
-                        <schemavalidate file="@{file.path.name}.x3d" failonerror="false" fullchecking="false" lenient="false" warn="true">
+                        <schemavalidate file="@{file.path.name}" failonerror="false" fullchecking="false" lenient="false" warn="true">
                             <xmlcatalog refid="X3dCatalog"/>
                         </schemavalidate>
                         <echo message="check schematron validation of original model..."/>
-- 
GitLab