mirror of https://github.com/restic/restic.git
Fix build.go, minimum Go version is 1.14
This commit is contained in:
parent
17878036d8
commit
9b57fcc6b0
2
build.go
2
build.go
|
@ -59,7 +59,7 @@ var config = Config{
|
|||
Main: "./cmd/restic", // package name for the main package
|
||||
DefaultBuildTags: []string{"selfupdate"}, // specify build tags which are always used
|
||||
Tests: []string{"./..."}, // tests to run
|
||||
MinVersion: GoVersion{Major: 1, Minor: 11, Patch: 0}, // minimum Go version supported
|
||||
MinVersion: GoVersion{Major: 1, Minor: 14, Patch: 0}, // minimum Go version supported
|
||||
}
|
||||
|
||||
// Config configures the build.
|
||||
|
|
Loading…
Reference in New Issue