1
0
mirror of https://github.com/rancher/os.git synced 2025-09-26 05:03:05 +00:00

fix gen-os-config.sh error

Need to source build.conf.${ARCH} file when we generate os-config.yml
after the pr(https://github.com/rancher/os/pull/815) merged.

this patch fix it.

Signed-off-by: Wang Long <long.wanglong@huawei.com>
This commit is contained in:
Wang Long
2016-03-22 14:15:30 +08:00
parent 097e8d3b4f
commit e074038775

View File

@@ -5,6 +5,7 @@ cd $(dirname $0)/..
set -a
. build.conf
. build.conf.${ARCH}
SUFFIX=""
[ "${ARCH}" == "amd64" ] || SUFFIX="_${ARCH}"