Skip to content
Snippets Groups Projects
Commit e1cd1996 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

reduce occurrence of warning when unnecessary

parent c66a7566
No related branches found
No related tags found
No related merge requests found
...@@ -2621,6 +2621,7 @@ ignoreSetupDownloadErrors=true ...@@ -2621,6 +2621,7 @@ ignoreSetupDownloadErrors=true
<not> <not>
<contains string="@{file.path.name}" substring="slideshow." /> <contains string="@{file.path.name}" substring="slideshow." />
</not> </not>
<equals arg1="@{file.path.name}" arg2=""/>
</and> </and>
<then> <then>
<echo>Warning: no parent scene determined for script, additional false-positive errors may be flagged</echo> <echo>Warning: no parent scene determined for script, additional false-positive errors may be flagged</echo>
...@@ -2635,6 +2636,9 @@ ignoreSetupDownloadErrors=true ...@@ -2635,6 +2636,9 @@ ignoreSetupDownloadErrors=true
<not> <not>
<contains string="@{file.path.name}" substring="slideshow." /> <contains string="@{file.path.name}" substring="slideshow." />
</not> </not>
<not>
<equals arg1="@{file.path.name}" arg2=""/>
</not>
</and> </and>
<then> <then>
<echo>jslint @{file.path.name}</echo> <echo>jslint @{file.path.name}</echo>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment