Bug 1164939: Use flame instead of flame-kk for platform name. CLOSED TREE

We (I) broke flame OTA updates because we used the target name as the
platform name. flame and flame-kk must use "flame" as the platform name.
This commit is contained in:
Wander Lairson Costa 2015-05-18 21:01:41 -03:00
parent a326e07ef5
commit 5c6c8f575b

View File

@ -10,16 +10,16 @@ if [ ! -d $HOME/.ssh ]; then
mkdir $HOME/.ssh
fi
PLATFORM=${TARGET%%-*}
aws s3 cp s3://b2g-nightly-credentials/balrog_credentials .
mar_file=b2g-${TARGET%%-*}-gecko-update.mar
mar_file=b2g-$PLATFORM-gecko-update.mar
# We need different platform names for each variant (user, userdebug and
# eng). We do not append variant suffix for "user" to keep compability with
# verions already installed in the phones.
if [ $VARIANT == "user" ]; then
PLATFORM=$TARGET
else
PLATFORM=$TARGET-$VARIANT
if [ $VARIANT != "user" ]; then
PLATFORM=$PLATFORM-$VARIANT
fi
./mozharness/scripts/b2g_build.py \