Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
hirenko-v committed Sep 25, 2024
1 parent 1f4d4e9 commit 337c66c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/snippet/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ func (SnippetExecutor) Execute(_ context.Context, in executor.ExecuteInput) (exe
command := "echo ok" // Replace with your command

// Step 1: Execute the command
content, err := exec.Command("bash", "-c", command).Output()
content, err := exec.Command("sh", "-c", command).Output()
if err != nil {
return executor.ExecuteOutput{}, err
}
Expand Down

0 comments on commit 337c66c

Please sign in to comment.