diff options
author | Florian Pritz <bluewind@xinu.at> | 2014-01-31 23:33:37 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-05-27 15:46:04 +0200 |
commit | bf9c9f045dbd0f329dc914adc2b5ef9d79870f21 (patch) | |
tree | 46fb8f1dfe7c08587dfdfe6f00b471e49e19ce6e /db-update | |
parent | e783d30ac46e440869eacbfebbf3d9616952448c (diff) | |
download | dbscripts-bf9c9f045dbd0f329dc914adc2b5ef9d79870f21.tar.gz dbscripts-bf9c9f045dbd0f329dc914adc2b5ef9d79870f21.tar.xz |
bugfix
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'db-update')
-rwxr-xr-x | db-update | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -58,11 +58,15 @@ for repo in ${repos[@]}; do done for repo in ${repos[@]}; do - declare -a pkgfiles=() for pkgfile in $(getpkgfiles "${STAGING}/${repo}/"*${PKGEXT} 2>/dev/null); do arch_add_to_pool "$pkgfile" - pkgfiles=("${pkgfiles[@]}" "${pkgfile##*/}") + done + + for file in "$STAGING/$repo"/*/*; do + if [[ -h $file ]]; then + pkgfiles=("${pkgfiles[@]}" "${file##*/}") + fi done for pkgarch in ${ARCHES[@]}; do |