From bd2106b79bf8cdbe667b4d1bf3a47c6162b1e982 Mon Sep 17 00:00:00 2001 From: David Macek Date: Mon, 15 Feb 2016 09:58:37 +0100 Subject: [PATCH] CI: Fix pkgver() error when installing dependencies by downloading sources early --- ci-build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-build.sh b/ci-build.sh index c20bb24ae2..a4b8257aad 100644 --- a/ci-build.sh +++ b/ci-build.sh @@ -38,9 +38,9 @@ for recipe in "${recipes[@]}"; do echo echo "Build recipe: ${recipe}" echo - makepkg-mingw --syncdeps --noconfirm --noprogressbar --noextract --noprepare --nobuild || failure "Could not install deps for ${recipe}." + makepkg-mingw --syncdeps --noconfirm --noprogressbar --skippgpcheck --noprepare --nobuild || failure "Could not install deps for ${recipe}." echo - makepkg-mingw --skippgpcheck --nocheck || failure "Could not build ${recipe}." + makepkg-mingw --noextract --skippgpcheck --nocheck || failure "Could not build ${recipe}." cd - > /dev/null done