lib/kitchen/driver/aws/standard_platform/ubuntu.rb in kitchen-ec2-3.7.1 vs lib/kitchen/driver/aws/standard_platform/ubuntu.rb in kitchen-ec2-3.7.2
- old
+ new
@@ -37,10 +37,10 @@
search["architecture"] = architecture if architecture
search
end
def self.from_image(driver, image)
- if image.name =~ /ubuntu/i
+ if /ubuntu/i.match?(image.name)
image.name =~ /\b(\d+(\.\d+)?)\b/i
new(driver, "ubuntu", (Regexp.last_match || [])[1], image.architecture)
end
end
end