From 83e15fb4e7b09e9d0d6eeed164021b5dd8ed198d Mon Sep 17 00:00:00 2001 From: Miro Stauder Date: Thu, 27 Jul 2023 23:37:52 +0200 Subject: [PATCH] Update ci-basictests.yml --- .github/workflows/ci-basictests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-basictests.yml b/.github/workflows/ci-basictests.yml index 71bbf5d1f..7b746595c 100644 --- a/.github/workflows/ci-basictests.yml +++ b/.github/workflows/ci-basictests.yml @@ -95,9 +95,9 @@ jobs: # apply patches for PATCH in $(cd jenkins-build-scripts/test-scripts/patches; find . -type f); do if [[ $PATCH =~ \.patch ]]; then - patch proxysql/test/tap/${PATCH%.patch} jenkins-build-scripts/test-scripts/patches/${PATCH} + patch proxysql/${PATCH%.patch} jenkins-build-scripts/test-scripts/patches/${PATCH} || true elif [[ ! -f jenkins-build-scripts/test-scripts/patches/${PATCH#./}.patch ]]; then - cp jenkins-build-scripts/test-scripts/patches/${PATCH#./} proxysql/test/tap/${PATCH#./} + cp jenkins-build-scripts/test-scripts/patches/${PATCH#./} proxysql/${PATCH#./} || true fi done