mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-28 19:19:40 +00:00
18 lines
213 B
Bash
Executable File
18 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
if [ ! -e ../bin/containerd ]; then
|
|
./build
|
|
fi
|
|
|
|
./package-cli
|
|
|
|
if [ -z "$SKIP_IMAGE" ]; then
|
|
./package-image
|
|
fi
|
|
if [ -z "$SKIP_AIRGAP" ]; then
|
|
./package-airgap
|
|
fi
|