From e1cd19968112e2c01cfce581f01d775dcd5e118b Mon Sep 17 00:00:00 2001
From: Don Brutzman <brutzman@nps.edu>
Date: Wed, 1 Apr 2020 05:43:07 -0700
Subject: [PATCH] reduce occurrence of warning when unnecessary

---
 build.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/build.xml b/build.xml
index 87fc981ad3..2db7e656a6 100644
--- a/build.xml
+++ b/build.xml
@@ -2621,6 +2621,7 @@ ignoreSetupDownloadErrors=true
                             <not>
                                 <contains string="@{file.path.name}" substring="slideshow." />
                             </not>
+                            <equals arg1="@{file.path.name}" arg2=""/>
                         </and>
                         <then>
                             <echo>Warning: no parent scene determined for script, additional false-positive errors may be flagged</echo>
@@ -2635,6 +2636,9 @@ ignoreSetupDownloadErrors=true
                         <not>
                             <contains string="@{file.path.name}" substring="slideshow." />
                         </not>
+                        <not>
+                            <equals arg1="@{file.path.name}" arg2=""/>
+                        </not>
                     </and>
                     <then>
                         <echo>jslint  @{file.path.name}</echo>
-- 
GitLab