From e07403877542c1350a5e024d734c3990bfe5c19a Mon Sep 17 00:00:00 2001 From: Wang Long Date: Tue, 22 Mar 2016 14:15:30 +0800 Subject: [PATCH] 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 --- scripts/gen-os-config.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/gen-os-config.sh b/scripts/gen-os-config.sh index 4d430899..fa09c898 100755 --- a/scripts/gen-os-config.sh +++ b/scripts/gen-os-config.sh @@ -5,6 +5,7 @@ cd $(dirname $0)/.. set -a . build.conf +. build.conf.${ARCH} SUFFIX="" [ "${ARCH}" == "amd64" ] || SUFFIX="_${ARCH}"