From d3dc4a9f2c705ef17200afe8aec50f9fcaa0ce57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Tue, 21 Apr 2026 18:38:02 +0200 Subject: [PATCH] ci: Fix shellcheck issues in install_libseccomp.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix shellcheck warnings and notes identified by running shellcheck --severity=style. Signed-off-by: Fabiano FidĂȘncio --- ci/install_libseccomp.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/install_libseccomp.sh b/ci/install_libseccomp.sh index 047b58f46f..e9032c5640 100755 --- a/ci/install_libseccomp.sh +++ b/ci/install_libseccomp.sh @@ -9,6 +9,7 @@ set -o errexit script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +# shellcheck source=/dev/null source "${script_dir}/../tests/common.bash" # Path to the ORAS cache helper for downloading tarballs (sourced when needed) @@ -79,6 +80,7 @@ build_and_install_gperf() { # Use ORAS cache if available and enabled if [[ "${USE_ORAS_CACHE}" == "yes" ]] && [[ -f "${oras_cache_helper}" ]]; then echo "Using ORAS cache for gperf download" + # shellcheck source=/dev/null source "${oras_cache_helper}" local cached_tarball cached_tarball=$(download_component gperf "$(pwd)")