mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 00:29:26 +00:00
11 lines
107 B
Bash
Executable File
11 lines
107 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
if [ -z "$SKIP_VALIDATE" ]; then
|
|
./validate
|
|
fi
|
|
./build
|
|
./package
|