kata-containers/tools/packaging/artifact-list.sh
stevenhorsman c5ff513e0b shellcheck: Fix shellcheck SC2068
> Double quote array expansions to avoid re-splitting elements

Signed-off-by: stevenhorsman <steven@uk.ibm.com>
2025-03-04 09:35:46 +00:00

23 lines
385 B
Bash
Executable File

#!/usr/bin/env bash
#
# Copyright (c) 2019 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
set -o errexit
set -o pipefail
set -o nounset
supported_artifacts=(
"install_clh"
"install_experimental_kernel"
"install_firecracker"
"install_image"
"install_kata_components"
"install_kernel"
"install_qemu"
)
for c in "${supported_artifacts[@]}"; do echo $c; done