mirror of
https://github.com/rancher/os.git
synced 2025-06-25 14:31:33 +00:00
14 lines
178 B
Bash
Executable File
14 lines
178 B
Bash
Executable File
#!/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
|