Skip to content

Commit 090a8a6

Browse files
authored
Fix SCCACHE_WRAPPER_DIR path formatting in workflow
1 parent 2aa6d54 commit 090a8a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-wheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ jobs:
195195
SCCACHE_CACHE_SIZE=${{ env.SCCACHE_CACHE_SIZE }}
196196
SCCACHE_LOG=debug
197197
DISTUTILS_USE_SDK=1
198-
PATH="$(cygpath -w "${{ env.SCCACHE_WRAPPER_DIR }}");$(dirname "${{ env.SCCACHE_PATH }}");$PATH"
198+
PATH="${{ env.SCCACHE_WRAPPER_DIR }};$(dirname "${{ env.SCCACHE_PATH }}");$PATH"
199199
CL_EXE="$(cygpath -w ${{ env.CL_EXE }})"
200200
# check cache stats before leaving cibuildwheel
201201
CIBW_BEFORE_TEST_LINUX: >

0 commit comments

Comments
 (0)