Skip to content

Commit

Permalink
fix: correct open command for Win
Browse files Browse the repository at this point in the history
  • Loading branch information
dundee committed Jan 6, 2023
1 parent 058a14d commit 5fa9320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tui/actions.go
Expand Up @@ -371,7 +371,7 @@ func (ui *UI) openItem() {
case "darwin":
openBinary = "open"
case "windows":
openBinary = "Invoke-Item"
openBinary = "explorer"
}

cmd := exec.Command(openBinary, selectedFile.GetPath())
Expand Down

0 comments on commit 5fa9320

Please sign in to comment.