Skip to content

Commit cef1a38

Browse files
committed
Fix symlinks on windows
1 parent 62f9763 commit cef1a38

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/pullrequest.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818

1919
steps:
2020
- uses: dtolnay/rust-toolchain@1.87.0
21+
- name: Enable symlinks on Windows
22+
if: runner.os == 'Windows'
23+
run: git config --global core.symlinks true
2124
- uses: actions/checkout@v4
2225
with:
2326
submodules: true
@@ -165,6 +168,9 @@ jobs:
165168

166169
steps:
167170
- uses: dtolnay/rust-toolchain@1.87.0
171+
- name: Enable symlinks on Windows
172+
if: runner.os == 'Windows'
173+
run: git config --global core.symlinks true
168174
- uses: actions/checkout@v4
169175
with:
170176
submodules: true

wasm-bindgen

Submodule wasm-bindgen updated 293 files

0 commit comments

Comments
 (0)