arch-reop-vercmp: supress output

This commit is contained in:
Daniel Langbein 2021-05-24 15:40:06 +02:00
parent 66cef9ce46
commit 23cf343ae3
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
_pkgname=repo _pkgname=repo
_reponame=arch _reponame=arch
pkgname="de-p1st-$_pkgname" pkgname="de-p1st-$_pkgname"
pkgver=0.2.6 pkgver=0.2.7
pkgrel=1 pkgrel=1
pkgdesc="Bash script to manage remote Arch Linux repository" pkgdesc="Bash script to manage remote Arch Linux repository"
arch=('any') arch=('any')

View File

@ -47,7 +47,7 @@ function get_vcs_packages(){
while IFS= read -r PKG_VER; do while IFS= read -r PKG_VER; do
PKGNAME=$(first_word "${PKG_VER}") || return $? PKGNAME=$(first_word "${PKG_VER}") || return $?
if echo "${PKGNAME}" | grep -E "$AURVCS"; then if echo "${PKGNAME}" | grep -E "$AURVCS" >/dev/null; then
VCS_PKGS+=("${PKGNAME}") VCS_PKGS+=("${PKGNAME}")
fi fi
done <<< "${PKG_VERS}" done <<< "${PKG_VERS}"