summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Milde <daniel@milde.cz>2023-01-06 22:02:41 +0100
committerDaniel Milde <daniel@milde.cz>2023-01-06 22:02:41 +0100
commit5fa93204717a7a7996879527d4dd0081564c6144 (patch)
tree29a44c0f539964b9004cd529358b5796fe012646
parent058a14dc5371caf1a415256a33cb284f586c5243 (diff)
fix: correct open command for Winv5.21.1
-rw-r--r--tui/actions.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tui/actions.go b/tui/actions.go
index 4699fbd..c9b39d6 100644
--- a/tui/actions.go
+++ b/tui/actions.go
@@ -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())