Skip to content
Snippets Groups Projects
Commit 2e3a5b62 authored by Mark Triggs's avatar Mark Triggs Committed by Demian Katz
Browse files

Explicitly escape wildcards ourselves

- Improves consistency of behavior between different platforms/Phing versions.
parent 2cf11723
No related merge requests found
...@@ -174,9 +174,9 @@ ...@@ -174,9 +174,9 @@
<exec command="sleep 30" /> <exec command="sleep 30" />
<!-- import marc test records into vufind index (note: the marc test records have prefix "testsample#") --> <!-- import marc test records into vufind index (note: the marc test records have prefix "testsample#") -->
<exec command="find ${srcdir}/tests/data -name *.mrc -printf %p," outputProperty="buglist" /> <exec escape="false" command="find ${srcdir}/tests/data -name '*.mrc' -printf '%p,'" outputProperty="buglist" />
<foreach list="${buglist}" param="filename" delimiter="," target="importrec" /> <foreach list="${buglist}" param="filename" delimiter="," target="importrec" />
<exec command="find ${srcdir}/tests/data/authority -name *.mrc -printf %p," outputProperty="authlist" /> <exec escape="false" command="find ${srcdir}/tests/data/authority -name '*.mrc' -printf '%p,'" outputProperty="authlist" />
<foreach list="${authlist}" param="filename" delimiter="," target="importauthrec" /> <foreach list="${authlist}" param="filename" delimiter="," target="importauthrec" />
<!-- build alphabrowse index --> <!-- build alphabrowse index -->
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment