Remove CLI args from default {blender} variable

Shell args parsing on Go is a bit tricky, need to find the right library
to do this before putting things into the default config.
This commit is contained in:
Sybren A. Stüvel 2022-02-21 20:07:50 +01:00
parent ba4b8274c9
commit 7111e2613e

@ -82,9 +82,9 @@ var defaultConfig = Conf{
"blender": {
Direction: "oneway",
Values: VariableValues{
VariableValue{Platform: "linux", Value: "/linux/path/to/blender --factory-startup --background"},
VariableValue{Platform: "windows", Value: "C:/windows/path/to/blender.exe --factory-startup --background"},
VariableValue{Platform: "darwin", Value: "/Volumes/Applications/Blender/blender --factory-startup --background"},
VariableValue{Platform: "linux", Value: "/linux/path/to/blender"},
VariableValue{Platform: "windows", Value: "C:/windows/path/to/blender.exe"},
VariableValue{Platform: "darwin", Value: "/Volumes/Applications/Blender/blender"},
},
},
"ffmpeg": {