mirror of
https://github.com/restic/restic.git
synced 2025-01-03 05:35:43 +00:00
Fix build.go, minimum Go version is 1.14
This commit is contained in:
parent
17878036d8
commit
9b57fcc6b0
1 changed files with 1 additions and 1 deletions
2
build.go
2
build.go
|
@ -59,7 +59,7 @@ var config = Config{
|
||||||
Main: "./cmd/restic", // package name for the main package
|
Main: "./cmd/restic", // package name for the main package
|
||||||
DefaultBuildTags: []string{"selfupdate"}, // specify build tags which are always used
|
DefaultBuildTags: []string{"selfupdate"}, // specify build tags which are always used
|
||||||
Tests: []string{"./..."}, // tests to run
|
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.
|
// Config configures the build.
|
||||||
|
|
Loading…
Reference in a new issue