packwiz/curseforge/cursedir_other.go

11 lines
192 B
Go

//go:build !windows
package curseforge
import "errors"
// Stub version, so that getCurseDir exists
func getCurseDir() (string, error) {
return "", errors.New("not compiled for windows")
}