Environment#active_machines should return a list of tuple

The tuple should be compsed of the machine name (as a string)
and provider name (as a symbol)
This commit is contained in:
sophia 2022-07-08 11:41:15 -05:00
parent 66a22e5254
commit a6caa47f8e

View File

@ -73,7 +73,7 @@ module Vagrant
targets = client.active_targets
names = []
targets.each do |t|
names << t.name
names << [t.name, t.provider_name.to_sym]
end
names
end