Flamenco/internal/find_blender/nonwindows.go
Sybren A. Stüvel aec5ee49e0 First-Time Wizard: allow selecting Blender executables
The wizard now finds Blender in various ways, and lets the user select
which one to use.

Doesn't save anything yet, though.
2022-07-14 12:22:56 +02:00

11 lines
223 B
Go

//go:build !windows
package find_blender
// SPDX-License-Identifier: GPL-3.0-or-later
// fileAssociation isn't implemented on non-Windows platforms.
func fileAssociation() (string, error) {
return "", ErrNotAvailable
}