Added ToNative to the blendfile args to resolve workers failing due to windows -> linux pathing #104295

Open
Jamie-Newbon wants to merge 1 commits from Jamie-Newbon/flamenco:main into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ func (ce *CommandExecutor) cmdBlenderRenderCommand(
// Only include the blendfile if the parameter is not empty. This makes it
// possible to pass a Python script that loads/constructs the blend file,
// instead of loading one explicitly here.
cliArgs = append(cliArgs, parameters.blendfile)
cliArgs = append(cliArgs, crosspath.ToNative(parameters.blendfile))
}
cliArgs = append(cliArgs, parameters.args...)
execCmd := ce.cli.CommandContext(ctx, parameters.exe, cliArgs...)