From 0d88aac005e8bd9bdc78567fdbc14a70e64af800 Mon Sep 17 00:00:00 2001 From: Salvador Fuentes Date: Wed, 23 Sep 2020 19:54:32 -0400 Subject: [PATCH] CI: Fix path to qemu patches Fix path to qemu patches in the `.ci/install_qemu.sh` script. Signed-off-by: Salvador Fuentes --- .ci/install_qemu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/install_qemu.sh b/.ci/install_qemu.sh index d60109911..41f1a5d72 100755 --- a/.ci/install_qemu.sh +++ b/.ci/install_qemu.sh @@ -96,7 +96,7 @@ build_and_install_qemu() { # Apply required patches QEMU_PATCHES_TAG=$(echo "${CURRENT_QEMU_VERSION}" | cut -d '.' -f1-2) - QEMU_PATCHES_PATH="${GOPATH}/src/${PACKAGING_REPO}/qemu/patches/${QEMU_PATCHES_TAG}.x" + QEMU_PATCHES_PATH="${PACKAGING_DIR}/qemu/patches/${QEMU_PATCHES_TAG}.x" for patch in ${QEMU_PATCHES_PATH}/*.patch; do echo "Applying patch: $patch" git apply "$patch"