k3s/scripts/package
Derek Nola eb068da7f3
Add SKIP_AIRGAP enviroment variable for make (#4688)
* Add SKIP_AIRGAP build flag

Signed-off-by: Derek Nola <derek.nola@suse.com>
2021-12-08 12:36:04 -08:00

15 lines
179 B
Bash
Executable File

#!/bin/bash
set -e
cd $(dirname $0)
if [ ! -e ../bin/containerd ]; then
./build
fi
./package-cli
if [ -z "$SKIP_AIRGAP" ]; then
./package-image
./package-airgap
fi