From 3146eaa74e9ec84fa649d15cd383d2bfb8c93078 Mon Sep 17 00:00:00 2001 From: David James Date: Thu, 9 Dec 2010 09:37:14 -0800 Subject: [PATCH] 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 --- archive_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archive_build.sh b/archive_build.sh index 74d577ea84..fdce71f8ce 100755 --- a/archive_build.sh +++ b/archive_build.sh @@ -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