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.
This commit is contained in:
Sybren A. Stüvel 2022-08-29 17:51:20 +02:00
parent 20395e0e26
commit c504e68d8e

View File

@ -291,7 +291,7 @@ func (c *Conf) addImplicitVariables() {
{ {
Audience: VariableAudienceAll, Audience: VariableAudienceAll,
Platform: VariablePlatformAll, Platform: VariablePlatformAll,
Value: crosspath.ToSlash(c.EffectiveStoragePath()), Value: c.EffectiveStoragePath(),
}, },
}, },
} }