mirror of
https://github.com/rancher/os.git
synced 2025-06-19 19:51:55 +00:00
16 lines
165 B
Plaintext
16 lines
165 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
source $(dirname $0)/version
|
||
|
|
||
|
cd $(dirname $0)
|
||
|
|
||
|
if [ ! -e ./bin/host_ros ]; then
|
||
|
./build
|
||
|
fi
|
||
|
|
||
|
./template
|
||
|
./build-images
|
||
|
./tar-images
|
||
|
./layout
|