summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBjörn Mattsson <bjorn@sunet.se>2022-11-28 11:34:44 +0100
committerBjörn Mattsson <bjorn@sunet.se>2022-11-28 11:34:44 +0100
commite25e4ad94619db9fc3d44311d6c52350c55b37e4 (patch)
tree2f334cde6fbff24ceab4bf4c9c1a68bf3c3b3e07 /scripts
parentfa84708a67d7fd05ff0bab76b122c43b1595ebc7 (diff)
Also check in swamid-edugain for duplicates
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 df0871a9..8994fab1 100755
--- a/scripts/pull-and-verify.sh
+++ b/scripts/pull-and-verify.sh
@@ -38,7 +38,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" -a ! -f "swamid-2.0-obsolete/$test" ]; then
+ if [ ! -f "swamid-2.0/$test" -a ! -f "swamid-edugain/$test" ]; then
echo "<xi:include href=\"$md\"/>"
fi
done