Merge "make.go: fix format verb for printing Go version"

This commit is contained in:
Mathieu Lonjaret 2018-03-10 20:43:56 +00:00 committed by Gerrit Code Review
commit 7fe1438341
1 changed files with 1 additions and 1 deletions

View File

@ -1076,7 +1076,7 @@ func verifyGoVersion() {
}
if minorVersion < goVersionMinor {
log.Fatalf("Your version of Go (%s) is too old. Perkeep requires Go 1.%c or later.", string(out), goVersionMinor)
log.Fatalf("Your version of Go (%s) is too old. Perkeep requires Go 1.%d or later.", string(out), goVersionMinor)
}
if minorVersion != gopherJSGoMinor {