Convert combine by: '||' to any

This commit is contained in:
Donal McBreen
2024-03-07 09:10:49 +00:00
parent 32a2ae5b2c
commit b94199415f
3 changed files with 9 additions and 2 deletions

View File

@@ -24,7 +24,10 @@ class Kamal::Commands::Builder::Base < Kamal::Commands::Base
def validate_image
pipe \
docker(:inspect, "-f", "'{{ .Config.Labels.service }}'", config.absolute_image),
[:grep, "-x", config.service, "||", "(echo \"Image #{config.absolute_image} is missing the 'service' label\" && exit 1)"]
any(
[:grep, "-x", config.service],
"(echo \"Image #{config.absolute_image} is missing the 'service' label\" && exit 1)"
)
end