diff options
Diffstat (limited to '.travis/tests.sh')
-rwxr-xr-x | .travis/tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/tests.sh b/.travis/tests.sh index c58878d..1503547 100755 --- a/.travis/tests.sh +++ b/.travis/tests.sh @@ -28,7 +28,7 @@ done # Skip go1.9 for this check. rtr7/router7 depends on miekg/dns, which does not # support go1.9 -if [ "$TRAVIS_GO_VERSION" = "1.9" ] +if [[ "$TRAVIS_GO_VERSION" =~ ^1.(9|10|11)$ ]] then exit 0 fi |