From 08851ee770c97a3041397ea406095a81fe72f65e Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Thu, 12 Mar 2020 10:49:07 -0400 Subject: [PATCH] Remove Perl workaround in Github Actions config The Github Actions runners for Windows now place Strawberry Perl earlier in the path than git-bash. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 85d6750d00..2af7da2f4b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -74,7 +74,7 @@ jobs: cd src call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars32.bat" set - set PATH=C:\Strawberry\perl\bin;%PATH%;%wix%bin + set PATH=%PATH%;%wix%bin nmake -f Makefile.in prep-windows nmake nmake install @@ -87,7 +87,7 @@ jobs: cd src call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat" set - set PATH=C:\Strawberry\perl\bin;%PATH%;%wix%bin;"%WindowsSdkVerBinPath%"\x86 + set PATH=%PATH%;%wix%bin;"%WindowsSdkVerBinPath%"\x86 nmake clean nmake nmake install -- 2.47.2