Use yay instead of pacaur as auracle doesn't build on arm
This commit is contained in:
parent
2f9ccd6dee
commit
baaf98b58e
1 changed files with 1 additions and 4 deletions
|
@ -153,10 +153,7 @@ function develversion_check() {
|
|||
while read -r pkg; do
|
||||
if [[ -d "$package_rootdir/$pkg" ]]; then
|
||||
# Find the current pkgver() of the package in the AUR
|
||||
package_version=$(pacaur -i "$pkg" \
|
||||
| sed -r 's/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g' \
|
||||
| grep -oE '^Version[^:]*: *[^ ]*' \
|
||||
| sed 's|^[^:]*: ||;s|-[0-9]*$||')
|
||||
package_version=$(yay -Sia "$pkg" | grep -e '^Version' | sed 's|^Version *: *||')
|
||||
pkgbuild_file="$package_rootdir/$pkg/PKGBUILD"
|
||||
|
||||
# Exit and skip this package if either its folder or the PKGBUILD it should contain are missing
|
||||
|
|
Loading…
Reference in a new issue