mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 10:09:28 +00:00
13 lines
137 B
Bash
Executable File
13 lines
137 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
if [ ! -e ../bin/containerd ]; then
|
|
./build
|
|
fi
|
|
|
|
./package-cli
|
|
./package-image
|
|
./package-airgap
|