From d9501596e8b419f3bf1787837db2fd26e7173a9e Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Fri, 20 Sep 2024 08:42:07 -0700 Subject: [PATCH] fix: use powershell var interpolation; not cmd --- .github/workflows/build-cpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-cpp.yml b/.github/workflows/build-cpp.yml index b3b222622..606cefdee 100644 --- a/.github/workflows/build-cpp.yml +++ b/.github/workflows/build-cpp.yml @@ -135,7 +135,7 @@ jobs: mkdir build cd build $env:DTARGET="include\bitwarden_c.dll.lib" - cmake .. -DTARGET="%DTARGET%" -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALLATION_ROOT\scripts\buildsystems\vcpkg.cmake" + cmake .. -DTARGET="$env:DTARGET" -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALLATION_ROOT\scripts\buildsystems\vcpkg.cmake" cmake --build . --config Release shell: pwsh