summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-01-08 00:30:36 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-01-08 00:30:36 -0500
commit725ab5d12375dd593c375b1a494021bb96135d4f (patch)
tree692c6d1fd220737954f0175f271c4e4e1b7be4e1
parent6682aefeafb8d30899e464122864f56318ad7640 (diff)
db-update: remove 'other' from repo blacklist now that issue #460 is added
-rwxr-xr-xdb-update2
1 files changed, 1 insertions, 1 deletions
diff --git a/db-update b/db-update
index b9b8015..1fddb8a 100755
--- a/db-update
+++ b/db-update
@@ -9,7 +9,7 @@ if [ $# -ge 1 ]; then
fi
# Find repos with packages to release
-repos=($(find "${STAGING}" -mindepth 1 -maxdepth 1 -type d ! -empty ! -name other -printf '%f ' 2>/dev/null))
+repos=($(find "${STAGING}" -mindepth 1 -maxdepth 1 -type d ! -empty -printf '%f ' 2>/dev/null))
if [ $? -ge 1 ]; then
die "Could not read ${STAGING}"
fi