Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #2167 from oxyc/issue-2166
Browse files Browse the repository at this point in the history
Issue #2166: Fix new ansible version output doesnt match regex
  • Loading branch information
geerlingguy authored May 28, 2021
2 parents df60dd1 + 6312f18 commit 788e337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/drupalvm/vagrant.rb
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def ansible_bin

# Return the ansible version parsed from running the executable path provided.
def ansible_version
/^[^\s]+ ([^\s]+)/.match(`#{ansible_bin} --version`) { |match| return match[1] }
/(#{Gem::Version::VERSION_PATTERN})/.match(`#{ansible_bin} --version`) { |match| return match[1] }
end

# Require that if installed, the ansible version meets the requirements.
Expand Down

0 comments on commit 788e337

Please sign in to comment.