From fd45eb044238a1f51421f1b88dab075be490b2d5 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Wed, 19 Feb 2025 15:41:12 +0000 Subject: [PATCH] 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 :) --- github-actions/setup-wsl/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-actions/setup-wsl/action.yml b/github-actions/setup-wsl/action.yml index b8efc5328..39ae632b2 100644 --- a/github-actions/setup-wsl/action.yml +++ b/github-actions/setup-wsl/action.yml @@ -20,7 +20,7 @@ outputs: value: C:\wsl_root wsl_root_unc_path: description: UNC Windows path pointing to the WSL file system root. - value: \\wsl.localhost\Debian + value: \\\\wsl.localhost\Debian runs: using: composite