Skip to content

Commit

Permalink
Merge pull request #794 from Scalingo/release/v1.25.0/fix-win-build
Browse files Browse the repository at this point in the history
Fix goreleaser failure for windows build
  • Loading branch information
Soulou authored Sep 16, 2022
2 parents a43dfe3 + 20669d2 commit 03d2f1c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/run/run_windows.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package run

import (
"context"
"net"
"os"

Expand All @@ -16,6 +17,6 @@ func NotifyTermSizeUpdate(signals chan os.Signal) {
return
}

func HandleSignal(c *scalingo.Client, s os.Signal, socket net.Conn, runURL string) {
func HandleSignal(ctx context.Context, c *scalingo.Client, s os.Signal, socket net.Conn, runURL string) {
return
}

0 comments on commit 03d2f1c

Please sign in to comment.