mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-19 18:01:01 +00:00
Not all distros have `/bin/bash`, e.g. NixOS. Fixes: #3450 Signed-off-by: Sebastian Hasler <sebastian.hasler@stuvus.uni-stuttgart.de>
23 lines
383 B
Bash
Executable File
23 lines
383 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
|