Bug 1173328: Dogfood builds always have "aries" as the platform name. r=garndt a=garndt

For dogfood builds, the variant doesn't play a role in the platform
name.
This commit is contained in:
Wander Lairson Costa 2015-06-10 10:38:37 -03:00
parent 915c8808e4
commit d2e4a67f73

View File

@ -16,7 +16,7 @@ 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 [ 0$DOGFOOD -ne 0 -o $VARIANT != "user" ]; then
if [ 0$DOGFOOD -ne 1 -a $VARIANT != "user" ]; then
PLATFORM=$PLATFORM-$VARIANT
fi