Skip to content

Commit

Permalink
forgot about windows, fixes #41
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed Mar 24, 2020
1 parent 424d15e commit b22d62e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions runner_windows.go
Expand Up @@ -14,9 +14,9 @@ var (
// SIGINT is and alias for syscall.SIGINT
SIGINT os.Signal = os.Interrupt

signalMap = map[os.Signal]eventType{
SIGTERM: Shutdown,
SIGINT: Shutdown,
signalMap = map[os.Signal]string{
SIGTERM: "terminate",
SIGINT: "terminate",
}
)

Expand Down

0 comments on commit b22d62e

Please sign in to comment.