| Index: archive_build.sh
|
| diff --git a/archive_build.sh b/archive_build.sh
|
| index 785273e14b0dc103933d923b53704a10abde4297..52ac3cb33ffd265f59e833514316f90f84e371a6 100755
|
| --- a/archive_build.sh
|
| +++ b/archive_build.sh
|
| @@ -265,6 +265,20 @@ then
|
| "${LAST_CHANGE}/${HWQUAL_NAME}.tar.bz2"
|
| fi
|
|
|
| +# Construct prebuilt upload command.
|
| +# This will upload prebuilt packages to Google Storage.
|
| +prebuilt_cmd="${SCRIPTS_DIR}/prebuilt.py"
|
| +prebuilt_cmd="$prebuilt_cmd -u gs://chromeos-prebuilt --git-sync -V master"
|
| +prebuilt_cmd="$prebuilt_cmd -p $(readlink -f ../..) -b ${FLAGS_board}"
|
| +
|
| +if [ "${FLAGS_BOARD}" == "x86-generic" ]
|
| +then
|
| + prebuilt_cmd="$prebuilt_cmd --sync-host"
|
| +fi
|
| +
|
| +echo "Running $prebuilt_cmd"
|
| +$prebuilt_cmd
|
| +
|
| gsutil_archive "${ZIPFILE}" "${LAST_CHANGE}/${FLAGS_zipname}"
|
|
|
| if [ $FLAGS_archive_debug -eq $FLAGS_TRUE ]
|
|
|