build: fix devel golang detection on debian/ubuntu (#14711)

This commit is contained in:
Addy Yeow 2017-06-27 17:11:41 +10:00 committed by Felix Lange
parent c008176f9f
commit cf611c50b9
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ func doInstall(cmdline []string) {
// Check Go version. People regularly open issues about compilation
// failure with outdated Go. This should save them the trouble.
if runtime.Version() < "go1.7" && !strings.HasPrefix(runtime.Version(), "devel") {
if runtime.Version() < "go1.7" && !strings.Contains(runtime.Version(), "devel") {
log.Println("You have Go version", runtime.Version())
log.Println("go-ethereum requires at least Go version 1.7 and cannot")
log.Println("be compiled with an earlier version. Please upgrade your Go installation.")