Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Nov 27, 2024
1 parent ba45187 commit b1dc622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spin/spin.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func commandStart(command []string) tea.Cmd {

func commandAbort() tea.Msg {
if executing != nil && executing.Process != nil {
executing.Process.Signal(syscall.SIGINT)
_ = executing.Process.Signal(syscall.SIGINT)
}
return nil
}
Expand Down

0 comments on commit b1dc622

Please sign in to comment.