From 93a55bd0ef1e17cbd8816f08dd4637a7ae3ba069 Mon Sep 17 00:00:00 2001 From: David Tarditi Date: Sun, 26 Nov 2023 14:24:29 -0800 Subject: [PATCH] Try escaping slash in directory path. --- .github/workflows/check-clang-windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-clang-windows.yml b/.github/workflows/check-clang-windows.yml index aef67e7..ee7e298 100644 --- a/.github/workflows/check-clang-windows.yml +++ b/.github/workflows/check-clang-windows.yml @@ -36,9 +36,9 @@ on: options: ['No','Yes'] env: - builddir: "${{github.workspace}}\b\build" + builddir: "${{github.workspace}}\\b\\build" BUILDCONFIGURATION: "Release" - BUILD_BINARIESDIRECTORY: "${{github.workspace}}\b" + BUILD_BINARIESDIRECTORY: "${{github.workspace}}\\b" BUILD_SOURCESDIRECTORY: "${{github.workspace}}" TEST_TARGET_ARCH: ${{ github.event.inputs.Architecture}} RUN_LOCAL: "no"