This commit is contained in:
Daniel Langbein 2021-04-25 16:31:34 +02:00
parent fe8fffe8c9
commit 91b88ef960
2 changed files with 5 additions and 5 deletions

View File

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

View File

@ -91,8 +91,8 @@ function get_pkgname(){
# remove "pkgname = " as well as tailing whitespace characters
local tmp
tmp=$(echo "$PKGINFO" | grep '^pkname') || return $?
PKGVER=$(echo "$tmp" | sed 's|^pkgname\s*=\s*||; s|\s*$||') || return $?
tmp=$(echo "${PKGINFO}" | grep '^pkname') || { echo "grep failed"; return 1; }
PKGVER=$(echo "${tmp}" | sed 's|^pkgname\s*=\s*||; s|\s*$||') || { echo "sed failed"; return 1; }
}
#
# get pkgver from $PKGINFO
@ -102,8 +102,8 @@ function get_pkgver(){
# remove "pkgver = " as well as tailing whitespace characters
local tmp
tmp=$(echo "$PKGINFO" | grep '^pkgver') || return $?
PKGVER=$(echo "$tmp" | sed 's|^pkgver\s*=\s*||; s|\s*$||') || return $?
tmp=$(echo "${PKGINFO}" | grep '^pkgver') || { echo "grep failed"; return 1; }
PKGVER=$(echo "${tmp}" | sed 's|^pkgver\s*=\s*||; s|\s*$||') || { echo "sed failed"; return 1; }
}