1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-01-19 05:27:57 +00:00
rolens/internal/utils/open_file/open_darwin.go
2023-02-11 21:57:52 +01:00

10 lines
133 B
Go

//go:build darwin
package open_file
import "os/exec"
func reveal(fname string) {
exec.Command("open", "--reveal", fname).Run()
}