mirror of
https://github.com/cnrancher/kube-explorer.git
synced 2025-07-04 02:16:54 +00:00
11 lines
116 B
Bash
Executable File
11 lines
116 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
./download
|
|
./validate
|
|
./build
|
|
if [ -z "${SKIP_PACKAGE}" ]; then
|
|
./package
|
|
fi |