Skip to content

Commit c90c3c2

Browse files
committed
idk
1 parent 92fca93 commit c90c3c2

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/ee-wcp-build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,5 @@ jobs:
1818
- uses: ilammy/msvc-dev-cmd@v1
1919
with:
2020
arch: amd64
21-
- shell: powershell
22-
run: |
21+
- run: |
2322
make ee/wcp/build

ee/wcp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,8 @@ endif()
231231

232232
# --- jwt-cpp and OpenSSL - Begin
233233
find_package(Perl REQUIRED) # Needed to build OpenSSL
234-
list(APPEND CMAKE_MODULE_PATH "C:/Strawberry/perl")
235234
set(PERL "C:\\Strawberry\\perl\\bin\\perl.exe")
235+
set(PERL_EXECUTABLE "C:\\Strawberry\\perl\\bin\\perl.exe")
236236
message(INFO " > Perl Path: ${PERL_EXECUTABLE}")
237237
message(INFO " > Perl Version: ${PERL_VERSION_STRING}")
238238

ee/wcp/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ clean:
1212

1313
.PHONY: build
1414
build:
15-
Remove-Item -Force CMakeCache.txt
16-
New-Item -ItemType Directory "${TOP}/bin/${TARGET}"
15+
Remove-Item -ea 0 -Force CMakeCache.txt
16+
New-Item -ea 0 -Force -ItemType Directory "${TOP}/bin/${TARGET}"
1717
cd "${TOP}/bin/${TARGET}"
1818
. ${TOP}/hack/windows/setup.ps1
1919
nmake /P

0 commit comments

Comments
 (0)