Merge branch '3.3.x' into 3.4.x

Closes gh-45166
This commit is contained in:
Phillip Webb 2025-04-11 09:19:32 -07:00
commit ef9ad41b0a
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ public class Image extends MappedObject {
* @return the image OS
*/
public String getOs() {
return (!StringUtils.hasText(this.os)) ? "linux" : this.os;
return (StringUtils.hasText(this.os)) ? this.os : "linux";
}
/**