mirror of
https://github.com/k3s-io/k3s.git
synced 2026-02-03 20:39:49 -05:00
14 lines
175 B
Bash
Executable file
14 lines
175 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
if [ ! -e ../bin/containerd ]; then
|
|
./build
|
|
fi
|
|
|
|
./package-cli
|
|
./package-image
|
|
if [ -z "$SKIP_AIRGAP" ]; then
|
|
./package-airgap
|
|
fi
|