mirror of
https://github.com/rancher/os.git
synced 2025-06-21 20:47:04 +00:00
18 lines
219 B
Bash
Executable File
18 lines
219 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source $(dirname $0)/version
|
|
|
|
cd $(dirname $0)
|
|
|
|
if [ ! -e ../bin/host_ros ]; then
|
|
./build
|
|
fi
|
|
|
|
./template
|
|
if [ "$HOST_ARCH" = "$ARCH" ]; then
|
|
CORE=true ./build-images
|
|
fi
|
|
./tar-images
|
|
./layout
|