From 9bddf3c580bbc1c6eab33367ce65db074dc09ef3 Mon Sep 17 00:00:00 2001 From: David Macek Date: Mon, 15 Feb 2016 09:58:54 +0100 Subject: [PATCH] CI: Fix most failures when installing conflicting packages --- ci-build.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ci-build.sh b/ci-build.sh index a4b8257aad..d98e8b8865 100644 --- a/ci-build.sh +++ b/ci-build.sh @@ -45,4 +45,8 @@ for recipe in "${recipes[@]}"; do done # Install -pacman --upgrade --noconfirm */*.pkg.tar.xz +for recipe in "${recipes[@]}"; do + yes | pacman --upgrade "${recipe}"/*.pkg.tar.xz || failure "Could not install built packages for ${recipe}." +done + +success "Done."