1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-01-18 21:17:59 +00:00
rolens/internal/open_file/open_darwin.go
2023-02-18 15:42:51 +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()
}