From 2b1bf4d8a138668ac719ea7ca149b53ed8d8401e Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Thu, 9 Jan 2025 14:23:45 -0500 Subject: [PATCH] fix slashes in windows depot path (#153) --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index fa59c06..ff56197 100644 --- a/action.yml +++ b/action.yml @@ -68,6 +68,7 @@ runs: fi if [[ "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" ]]; then depot="${depot/#\~/$USERPROFILE}" # Windows paths + depot="${depot//\\//}" # Replace backslashes with forward slashes else depot="${depot/#\~/$HOME}" # Unix-like paths fi