We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdb1ef3 commit 273bbaeCopy full SHA for 273bbae
build-lgtm.sh
@@ -9,8 +9,11 @@ echo "Building the Grafana OTEL-LGTM image with release ${RELEASE}..."
9
10
if [ -n "$CONTAINER_RUNTIME_OVERRIDE" ]; then
11
case "$CONTAINER_RUNTIME_OVERRIDE" in
12
- docker|podman) RUNTIME="$CONTAINER_RUNTIME_OVERRIDE" ;;
13
- *) echo "Invalid runtime: $CONTAINER_RUNTIME_OVERRIDE (must be docker or podman)"; exit 1 ;;
+ docker | podman) RUNTIME="$CONTAINER_RUNTIME_OVERRIDE" ;;
+ *)
14
+ echo "Invalid runtime: $CONTAINER_RUNTIME_OVERRIDE (must be docker or podman)"
15
+ exit 1
16
+ ;;
17
esac
18
elif command -v docker >/dev/null 2>&1; then
19
RUNTIME=docker
0 commit comments