
`blender-launcher.exe` doesn't pipe Blender's stdout/stderr output, so it's not useful for Flamenco.
12 lines
317 B
Go
12 lines
317 B
Go
//go:build !windows
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
package find_blender
|
|
|
|
import "errors"
|
|
|
|
// FindBlender returns an error, as the file association lookup is only available on Windows.
|
|
func FindBlender() (string, error) {
|
|
return "", errors.New("file association lookup is only available on Windows")
|
|
}
|