mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
fix2
This commit is contained in:
parent
08e587a2c0
commit
66cef9ce46
@ -2,7 +2,7 @@
|
|||||||
_pkgname=repo
|
_pkgname=repo
|
||||||
_reponame=arch
|
_reponame=arch
|
||||||
pkgname="de-p1st-$_pkgname"
|
pkgname="de-p1st-$_pkgname"
|
||||||
pkgver=0.2.5
|
pkgver=0.2.6
|
||||||
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')
|
||||||
|
@ -45,12 +45,12 @@ function get_vcs_packages(){
|
|||||||
# https://github.com/AladW/aurutils/pull/283/files
|
# https://github.com/AladW/aurutils/pull/283/files
|
||||||
readonly AURVCS='.*-(bzr|git|hg|svn)$'
|
readonly AURVCS='.*-(bzr|git|hg|svn)$'
|
||||||
|
|
||||||
for PKG_VER in "${PKG_VERS[@]}"; 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"; then
|
||||||
VCS_PKGS+=("${PKGNAME}")
|
VCS_PKGS+=("${PKGNAME}")
|
||||||
fi
|
fi
|
||||||
done
|
done <<< "${PKG_VERS}"
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user