From: Jorge Manuel B. S. Vicetto (jmbsvicetto) Date: Fri, 31 Aug 2012 01:56:45 +0000 (+0000) Subject: We need to quote UPDATE_SEED_STAGE or the test will always return sucess. X-Git-Tag: Catalyst-2.0.11~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=97daf71e380e5e70403358339cde93ebd8d7cad9;p=catalyst.git We need to quote UPDATE_SEED_STAGE or the test will always return sucess. --- diff --git a/targets/stage1/stage1-chroot.sh b/targets/stage1/stage1-chroot.sh index 641f5c39..2c4dacac 100644 --- a/targets/stage1/stage1-chroot.sh +++ b/targets/stage1/stage1-chroot.sh @@ -26,7 +26,7 @@ run_merge "--oneshot --nodeps sys-apps/baselayout" # Update stage3 #UPDATE_SEED_STAGE="yes" -if [ -n ${UPDATE_SEED_STAGE} ]; then +if [ -n "${UPDATE_SEED_STAGE}" ]; then echo "Updating seed stage..." clst_root_path=/ run_merge "--update --deep --newuse @world" fi