From c504e68d8eed0ea678138f40666aaa6631d9b661 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 29 Aug 2022 17:51:20 +0200 Subject: [PATCH] Manager: store the `jobs` implicit variable in platform-native notation Don't change backslashes to forward slashes on Windows. Trying to use forward slashes everywhere was a mistake, and this is one of the steps to make it right. --- internal/manager/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/manager/config/config.go b/internal/manager/config/config.go index d3cb5adb..23fdd1e7 100644 --- a/internal/manager/config/config.go +++ b/internal/manager/config/config.go @@ -291,7 +291,7 @@ func (c *Conf) addImplicitVariables() { { Audience: VariableAudienceAll, Platform: VariablePlatformAll, - Value: crosspath.ToSlash(c.EffectiveStoragePath()), + Value: c.EffectiveStoragePath(), }, }, }