mirror of
https://github.com/k3s-io/k3s.git
synced 2026-03-02 05:13:37 -05:00
11 lines
118 B
Bash
Executable file
11 lines
118 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
./download
|
|
if [ -z "$SKIP_VALIDATE" ]; then
|
|
./validate
|
|
fi
|
|
./build
|
|
./package
|