Sybren A. Stüvel 20f13257f7 Move "blender finder" from Worker-specific to common location
Manager's first-time wizard will have to be able to find Blender as well.
2022-07-14 11:17:03 +02:00

11 lines
257 B
Go

//go:build !windows
package find_blender
// SPDX-License-Identifier: GPL-3.0-or-later
// findBlender returns ErrNotAvailable, as the file association lookup is only available on Windows.
func findBlender() (string, error) {
return "", ErrNotAvailable
}