Sybren A. Stüvel 38aedfe8cc Worker: make blender-finder find blender.exe and not blender-launcher.exe
`blender-launcher.exe` doesn't pipe Blender's stdout/stderr output, so it's
not useful for Flamenco.
2022-04-09 16:16:19 +02:00

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")
}