From 5da72a4dc1dd5545cdd1de06b59bc356c55c3a76 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Wed, 24 Aug 2022 21:33:22 +0900 Subject: [PATCH] Suppress shellcheck warnings Signed-off-by: Yuki Okushi --- ci/run-docker.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/run-docker.sh b/ci/run-docker.sh index 726c3c5a7a1c9..c7d78bc8a1d29 100755 --- a/ci/run-docker.sh +++ b/ci/run-docker.sh @@ -1,5 +1,8 @@ #!/usr/bin/env sh +# Disable SC2086 as it confuses the docker command. +# shellcheck disable=SC2086 + # Small script to run tests for a target (or all targets) inside all the # respective docker images.