From 892f4a323023847e3a9f3bf27779164f66f75119 Mon Sep 17 00:00:00 2001 From: Eric Mehl Date: Fri, 23 Sep 2022 17:51:52 -0400 Subject: [PATCH] gaffer.cmd : Use foward slashes in GAFFER_ROOT We're standardizing on using forward slashes everywhere possible for file paths. Changing `GAFFER_ROOT` at the wrapper level gives us the expected value (with /) without having to do special handling. --- bin/gaffer.cmd | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/gaffer.cmd b/bin/gaffer.cmd index 7b20a28602f..ebf38faf1d6 100644 --- a/bin/gaffer.cmd +++ b/bin/gaffer.cmd @@ -3,6 +3,7 @@ setlocal EnableDelayedExpansion set GAFFER_ROOT=%~dp0%.. +set "GAFFER_ROOT=%GAFFER_ROOT:\=/%" set HOME=%USERPROFILE%