summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAnders Lördal <anders@lordal.se>2015-09-11 14:20:29 +0200
committerAnders Lördal <anders@lordal.se>2015-09-11 14:20:29 +0200
commit62cb6d7e0b9dee62817680967a21a0b8e997f7a3 (patch)
treeccfa94b82a0dce3576f2e14eb865687a8d7ef081 /scripts
parentc50da04678b43b6d74b89cdd7ab7433db581b3cb (diff)
Added extra directore for dedupe
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/pull-and-verify.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pull-and-verify.sh b/scripts/pull-and-verify.sh
index b8b1e223..7cfda0a8 100755
--- a/scripts/pull-and-verify.sh
+++ b/scripts/pull-and-verify.sh
@@ -24,7 +24,7 @@ T=`mktemp`
for md in $DIR/*.xml; do
xsltproc xslt/clean-entitydescriptor.xsl $md > $T && mv $T $md
test=`echo $md | cut -d/ -f2-`
- if [ ! -f "swamid-2.0/$test" ]; then
+ if [ ! -f "swamid-2.0/$test" -a ! -f "swamid-2.0-obsolete/$test" ]; then
echo "<xi:include href=\"$md\"/>"
fi
done