diff options
author | Anders Lördal <anders@lordal.se> | 2015-09-11 14:20:29 +0200 |
---|---|---|
committer | Anders Lördal <anders@lordal.se> | 2015-09-11 14:20:29 +0200 |
commit | 62cb6d7e0b9dee62817680967a21a0b8e997f7a3 (patch) | |
tree | ccfa94b82a0dce3576f2e14eb865687a8d7ef081 /scripts | |
parent | c50da04678b43b6d74b89cdd7ab7433db581b3cb (diff) |
Added extra directore for dedupe
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/pull-and-verify.sh | 2 |
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 |