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

Issue #2166: Fix new ansible version output doesnt match regex #2167

Merged
merged 1 commit into from
May 28, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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