Fix typo where host prebuilts aren't getting updated.

archive_build.sh has code to archive host prebuilts, but the code isn't working because of a typo in archive_build.sh.

The typo: $FLAGS_board is misspelled as $FLAGS_BOARD.

BUG=chromium-os:10148
TEST=Ran prebuilt.py with --sync-host option

Change-Id: I50129b1fdfb931b1c076a064b970d7d943f556ac

Review URL: http://codereview.chromium.org/5724001
This commit is contained in:
David James 2010-12-09 09:37:14 -08:00
parent 84e72fab23
commit 3146eaa74e

View File

@ -275,7 +275,7 @@ then
prebuilt_cmd="$prebuilt_cmd -u gs://chromeos-prebuilt --git-sync -V master"
prebuilt_cmd="$prebuilt_cmd -p ${GCLIENT_ROOT} -b ${FLAGS_board}"
if [ "${FLAGS_BOARD}" == "x86-generic" ]
if [ "${FLAGS_board}" == "x86-generic" ]
then
prebuilt_cmd="$prebuilt_cmd --sync-host"
fi