From 2386f9d172afc9140676db0158b6d6db7b2c9fbf Mon Sep 17 00:00:00 2001 From: Rob Davies Date: Tue, 16 Jul 2024 14:06:36 +0100 Subject: [PATCH] Switch path around --- .github/workflows/windows-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows-build.yml b/.github/workflows/windows-build.yml index e1ecd4a73..3d818318c 100644 --- a/.github/workflows/windows-build.yml +++ b/.github/workflows/windows-build.yml @@ -26,7 +26,7 @@ jobs: - name: Compile htslib shell: msys2 {0} run: | - export PATH="/mingw64/bin:/c/Program Files/Git/bin:$PATH" + export PATH="/mingw64/bin:$PATH:/c/Program Files/Git/bin" export MSYSTEM=MINGW64 autoreconf -i ./configure @@ -34,7 +34,7 @@ jobs: - name: Check Htslib shell: msys2 {0} run: | - export PATH="/mingw64/bin:/c/Program Files/Git/bin:$PATH" + export PATH="/mingw64/bin:$PATH:/c/Program Files/Git/bin" export MSYSTEM=MINGW64 make test-shlib-exports && make check