diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-01-08 00:30:36 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-01-08 00:30:36 -0500 |
commit | 725ab5d12375dd593c375b1a494021bb96135d4f (patch) | |
tree | 692c6d1fd220737954f0175f271c4e4e1b7be4e1 /db-update | |
parent | 6682aefeafb8d30899e464122864f56318ad7640 (diff) |
db-update: remove 'other' from repo blacklist now that issue #460 is added
Diffstat (limited to 'db-update')
-rwxr-xr-x | db-update | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |