Fix build.go, minimum Go version is 1.14

This commit is contained in:
Alexander Neumann 2022-03-20 10:54:33 +01:00
parent 17878036d8
commit 9b57fcc6b0
1 changed files with 1 additions and 1 deletions

View File

@ -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.