Skip to content

Commit

Permalink
Merge pull request #15 from polletto/fix/fixed-cmd-command
Browse files Browse the repository at this point in the history
fix cmd command
  • Loading branch information
zeppaman authored Sep 25, 2023
2 parents ff66e74 + bb4951c commit 5dc6984
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bashy/interpreters.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ func (re *Bashy) GetDefaultInterpreters() []*Interpreter {
interpreters = append(interpreters, &Interpreter{
Name: "bat",
Os: "windows",
Params: []string{"RUN", "$filename"},
Params: []string{"cmd", "/c", "$filename"},
})
} else if "linux" == utils.CurrentOS() {

Expand Down

0 comments on commit 5dc6984

Please sign in to comment.