Files
goffmpeg/pkg/cmd/find.go
T
Fran ec40467798 cleanup & fix ci (#82)
* cleanup readme & examples
* upgrade go version
* add makefile with basic commands
* add e2e test
* add gha
* update .gitignore
2023-09-29 17:47:28 +02:00

17 lines
181 B
Go

package cmd
import "runtime"
var (
platform = runtime.GOOS
)
func getFindCommand() string {
switch platform {
case "windows":
return "where"
default:
return "which"
}
}