mirror of
https://github.com/rancher/os.git
synced 2025-06-24 22:11:33 +00:00
14 lines
178 B
Bash
14 lines
178 B
Bash
|
#!/bin/bash
|
||
|
set -ex
|
||
|
|
||
|
cd $(dirname $0)/..
|
||
|
|
||
|
set -a
|
||
|
. build.conf
|
||
|
|
||
|
SUFFIX=""
|
||
|
[ "${ARCH}" == "amd64" ] || SUFFIX="_${ARCH}"
|
||
|
set +a
|
||
|
|
||
|
build/host_ros c generate < os-config.tpl.yml > $1
|