Skip to content

Commit 0b00468

Browse files
committed
fix(github-actions): escaping of double backslash is breaking
Apparently the double backslach ends up being escaped, while e.g. C:\wsl doesn't need the escaping :)
1 parent 93ff3a3 commit 0b00468

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

github-actions/setup-wsl/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ outputs:
2020
value: C:\wsl_root
2121
wsl_root_unc_path:
2222
description: UNC Windows path pointing to the WSL file system root.
23-
value: \\wsl.localhost\Debian
23+
value: \\\\wsl.localhost\Debian
2424

2525
runs:
2626
using: composite

0 commit comments

Comments
 (0)