Files
concourse-nomad-resource/common/common.go
2020-11-11 00:53:11 +01:00

14 lines
156 B
Go

package common
import (
"fmt"
"os"
)
func Check(err error, msg string) {
if err != nil {
fmt.Fprintf(os.Stderr, msg+": %s\n", err)
os.Exit(1)
}
}