aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Ammerlaan <andrewammerlaan@riseup.net>2021-02-18 19:41:54 +0100
committerAndrew Ammerlaan <andrewammerlaan@riseup.net>2021-02-18 19:42:31 +0100
commit94d33fa2343d2b33f5199e0f54898c99cf7ad8de (patch)
tree95986dd8653965bdf779d78078d0abbbcf228dec /scripts
parentdev-python/pysftp: new package (diff)
downloadguru-94d33fa2343d2b33f5199e0f54898c99cf7ad8de.tar.gz
guru-94d33fa2343d2b33f5199e0f54898c99cf7ad8de.tar.bz2
guru-94d33fa2343d2b33f5199e0f54898c99cf7ad8de.zip
scripts/check-duplicates.sh: skip categories metadata.xml
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check-duplicates.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/check-duplicates.sh b/scripts/check-duplicates.sh
index 85af7839c..8c6743bbd 100755
--- a/scripts/check-duplicates.sh
+++ b/scripts/check-duplicates.sh
@@ -9,12 +9,12 @@
GENTOO_DIR="/var/db/repos/gentoo"
GENTOO_PACKAGES=(
$(find ${GENTOO_DIR} -mindepth 2 -maxdepth 2 -printf "%P\n" \
- | sort | grep -Ev "^(.git|.github|metadata|profiles|scripts)/"
+ | sort | grep -Ev "^(.git|.github|metadata|profiles|scripts)/|metadata.xml"
)
)
REPO_PACKAGES=(
$(find . -mindepth 2 -maxdepth 2 -printf "%P\n" \
- | sort | grep -Ev "^(.git|.github|metadata|profiles|scripts)/"
+ | sort | grep -Ev "^(.git|.github|metadata|profiles|scripts)/|metadata.xml"
)
)