full diff: https://github.com/moby/buildkit/compare/9f254e18360a...v0.10.0 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
13 lines
168 B
Go
13 lines
168 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package appcontext
|
|
|
|
import (
|
|
"os"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
var terminationSignals = []os.Signal{unix.SIGTERM, unix.SIGINT}
|