ficsit-cli-flake/cli/platforms.go

24 lines
620 B
Go
Raw Normal View History

2022-05-02 20:07:15 +00:00
package cli
2022-06-05 01:56:46 +00:00
import "path/filepath"
2022-05-02 20:07:15 +00:00
type Platform struct {
VersionPath string
LockfilePath string
}
var platforms = []Platform{
{
VersionPath: filepath.Join("Engine", "Binaries", "Linux", "UnrealServer-Linux-Shipping.version"),
2022-06-05 01:56:46 +00:00
LockfilePath: filepath.Join("FactoryGame", "Mods"),
2022-05-02 20:07:15 +00:00
},
{
VersionPath: filepath.Join("Engine", "Binaries", "Win64", "UnrealServer-Win64-Shipping.version"),
2022-06-05 01:56:46 +00:00
LockfilePath: filepath.Join("FactoryGame", "Mods"),
2022-05-02 20:07:15 +00:00
},
{
2022-06-05 01:56:46 +00:00
VersionPath: filepath.Join("Engine", "Binaries", "Win64", "FactoryGame-Win64-Shipping.version"),
LockfilePath: filepath.Join("FactoryGame", "Mods"),
2022-05-02 20:07:15 +00:00
},
}