mirror of
https://github.com/rancher/os.git
synced 2025-07-12 22:27:59 +00:00
12 lines
127 B
Bash
Executable File
12 lines
127 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
echo BUILD
|
|
./scripts/build
|
|
echo TEST
|
|
./scripts/test
|
|
echo VALIDATE
|
|
./scripts/validate
|