mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
Use shfmt to format all the sh file. https://github.com/mvdan/sh Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
22 lines
340 B
Bash
Executable File
22 lines
340 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2017-2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
cidir=$(dirname "$0")
|
|
source "${cidir}/lib.sh"
|
|
source /etc/os-release
|
|
|
|
# This script will execute packaging tests suite
|
|
|
|
if [ "$ID" == ubuntu ]; then
|
|
echo "Building snap image"
|
|
make snap
|
|
fi
|