mirror of https://github.com/perkeep/perkeep.git
Merge "make.go: fix format verb for printing Go version"
This commit is contained in:
commit
7fe1438341
2
make.go
2
make.go
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue