mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-27 11:31:05 +00:00
> Double quote array expansions to avoid re-splitting elements Signed-off-by: stevenhorsman <steven@uk.ibm.com>
23 lines
385 B
Bash
Executable File
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
|