We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f476c10 commit e16cb0eCopy full SHA for e16cb0e
buildSrc/src/main/groovy/org/elasticsearch/gradle/vagrant/VagrantSupportPlugin.groovy
@@ -45,7 +45,7 @@ class VagrantSupportPlugin implements Plugin<Project> {
45
}
46
String version = pipe.toString().trim()
47
if (runResult.exitValue == 0) {
48
- if (version ==~ /Vagrant 1\.(8\.[6-9]|9\.[0-9])+/ || version ==~ /Vagrant 2\.[0-9]\.[0-9]+/) {
+ if (version ==~ /Vagrant 1\.(8\.[6-9]|9\.[0-9])+/ || version ==~ /Vagrant 2\.[0-9]+\.[0-9]+/) {
49
return [ 'supported' : true ]
50
} else {
51
return [ 'supported' : false,
0 commit comments