hack/make.ps1: remove the .0 suffix from go version
We would like to use a version with .0 suffix (like 1.11.0) in Dockerfile, so that once a .1 version is out (like 1.11.1) we won't accidentally switch to it. Unfortunately it's not possible to use .0 suffix currently as it breaks the check in make.ps1. This patch fixes that. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com> (cherry picked from commit 8ad648b59a2993156586458cc9ff8dcbc89b86e4) Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: dc5371b4134dd6474a467308da85daaa27914a64 Component: engine
This commit is contained in:
committed by
Sebastiaan van Stijn
parent
0f2b4bb0cf
commit
bad43bbc06
@ -134,7 +134,7 @@ Function Check-InContainer() {
|
||||
# outside of a container where it may be out of date with master.
|
||||
Function Verify-GoVersion() {
|
||||
Try {
|
||||
$goVersionDockerfile=(Select-String -Path ".\Dockerfile" -Pattern "^FROM golang:").ToString().Split(" ")[1].SubString(7)
|
||||
$goVersionDockerfile=(Select-String -Path ".\Dockerfile" -Pattern "^FROM golang:").ToString().Split(" ")[1].SubString(7) -replace '\.0$',''
|
||||
$goVersionInstalled=(go version).ToString().Split(" ")[2].SubString(2)
|
||||
}
|
||||
Catch [Exception] {
|
||||
|
||||
Reference in New Issue
Block a user