1
0
mirror of https://github.com/packwiz/packwiz.git synced 2025-05-02 02:36:29 +02:00
packwiz/curseforge/cursedir_other.go
comp500 8956ec9bcb Make import look in more places for packs
Now supports Curse/Twitch instance names
and folders containing minecraftinstance.json or manifest.json
2019-09-20 01:37:38 +01:00

11 lines
191 B
Go

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