summaryrefslogtreecommitdiff
path: root/update-archlinux32-package
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-05-21 15:56:25 +0200
committerErich Eckner <git@eckner.net>2019-05-21 15:56:25 +0200
commit86ea009191864b2d4ef974d8ae69e21c01d2c780 (patch)
tree4aaebfb7b907ca2dbc0c309a15306e731dc70d80 /update-archlinux32-package
parent442c44aad056639748f91ca39c681215f042fc86 (diff)
downloaddevops-86ea009191864b2d4ef974d8ae69e21c01d2c780.tar.xz
update-archlinux32-package: do not fail on pentium4 test-vm
Diffstat (limited to 'update-archlinux32-package')
-rwxr-xr-xupdate-archlinux32-package8
1 files changed, 4 insertions, 4 deletions
diff --git a/update-archlinux32-package b/update-archlinux32-package
index 5fe771d..411fceb 100755
--- a/update-archlinux32-package
+++ b/update-archlinux32-package
@@ -217,7 +217,7 @@ case ${update_path} in
ssh arch32-test '
cd "'"${pkgname}"'"
cat >> PKGBUILD
- echo "arch+=(i686)" >> PKGBUILD
+ echo "arch+=(i686 pentium4)" >> PKGBUILD
makepkg -g
' < "${git_repo_path}/${repo}/${pkgname}/PKGBUILD" \
| sed -n "$(
@@ -256,7 +256,7 @@ case ${update_path} in
| ssh arch32-test '
cd "'"${pkgname}"'"
cat > PKGBUILD
- echo "arch+=(i686)" >> PKGBUILD
+ echo "arch+=(i686 pentium4)" >> PKGBUILD
makepkg --verifysource
'; then
>&2 echo 'something went wrong'
@@ -287,7 +287,7 @@ case ${update_path} in
sums=$(
ssh arch32-test '
cd "'"${pkgname}"'"
- echo "arch+=(i686)" >> PKGBUILD
+ echo "arch+=(i686 pentium4)" >> PKGBUILD
makepkg -g
' \
| sed '
@@ -307,7 +307,7 @@ case ${update_path} in
if ! ssh arch32-test '
cd "'"${pkgname}"'"
cat > PKGBUILD
- echo "arch+=(i686)" >> PKGBUILD
+ echo "arch+=(i686 pentium4)" >> PKGBUILD
makepkg --verifysource
' < "${git_repo_path}/${repo}/${pkgname}/PKGBUILD"; then
>&2 echo 'something went wrong'