mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-05-05 12:02:33 +00:00
Fix shellcheck warnings and notes identified by running shellcheck --severity=style. Signed-off-by: Fabiano Fidêncio <ffidencio@nvidia.com>
14 lines
276 B
Bash
Executable File
14 lines
276 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2017-2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -e
|
|
|
|
cidir=$(dirname "$0")
|
|
# shellcheck source=/dev/null
|
|
source "${cidir}/../tests/common.bash"
|
|
|
|
run_static_checks "${@:-github.com/kata-containers/kata-containers}"
|