mirror of
https://github.com/restic/restic.git
synced 2025-08-23 00:17:33 +00:00
build.go: make sure to exit 1 on error
This commit is contained in:
5
build.go
5
build.go
@@ -319,8 +319,7 @@ func main() {
|
||||
|
||||
err = build(gopath, args...)
|
||||
if err != nil {
|
||||
fmt.Fprintf(os.Stderr, "build failed: %v\n", err)
|
||||
return
|
||||
die("build failed: %v\n", err)
|
||||
}
|
||||
|
||||
if runTests {
|
||||
@@ -328,7 +327,7 @@ func main() {
|
||||
|
||||
err = test(gopath, "github.com/restic/restic/...")
|
||||
if err != nil {
|
||||
fmt.Fprintf(os.Stderr, "build failed: %v\n", err)
|
||||
die("running tests failed: %v\n", err)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user