k3s/scripts/package

17 lines
212 B
Text
Raw Normal View History

2019-01-01 03:23:01 -05:00
#!/bin/bash
set -e
cd $(dirname $0)
2019-01-25 23:56:20 -05:00
if [ ! -e ../bin/containerd ]; then
2019-01-09 11:54:15 -05:00
./build
fi
2019-01-01 03:23:01 -05:00
./package-cli
if [ -z "$SKIP_IMAGE" ]; then
./package-image
fi
if [ -z "$SKIP_AIRGAP" ]; then
./package-airgap
fi