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