Skip to content

Commit

Permalink
fix: zoxide path variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmedeski committed Feb 7, 2024
1 parent e098d80 commit be2badd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zoxide/zoxide.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import (
)

func zoxideCmd(args []string) ([]byte, error) {
tmux, err := exec.LookPath("zoxide")
zoxide, err := exec.LookPath("zoxide")
if err != nil {
return nil, err
}
cmd := exec.Command(tmux, args...)
cmd := exec.Command(zoxide, args...)
output, err := cmd.Output()
if err != nil {
return nil, err
Expand Down

0 comments on commit be2badd

Please sign in to comment.