mirror of
https://github.com/kubevela/kubevela.git
synced 2026-02-14 18:10:21 +00:00
16 lines
204 B
Bash
Executable File
16 lines
204 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
echo "building binary"
|
|
echo "========"
|
|
go build -o bin/vela ./references/cmd/cli/
|
|
export PATH=bin/:$PATH
|
|
|
|
echo "vela up"
|
|
echo "========"
|
|
cd examples/testapp
|
|
vela up
|
|
|
|
cd ../..
|