_scripts: fix test_linux.sh version check (#2785)
The version check to disable the buildvcs option is wrong, it doesn't matter now but it will start failing when 1.18.1 is released.
This commit is contained in:
parent
935161f8bf
commit
b69bcf53d6
@ -57,7 +57,7 @@ cd delve
|
||||
# with the current VCS revision, which does not work with TeamCity
|
||||
if [ "$version" = "gotip" ]; then
|
||||
export GOFLAGS=-buildvcs=false
|
||||
elif [ ${version:4} -gt 17 ]; then
|
||||
elif [ ${version:4:2} -gt 17 ]; then
|
||||
export GOFLAGS=-buildvcs=false
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user