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