Bug 1193914 - Properly check ide type when deciding whether or not to package. r=benwa

This commit is contained in:
Eric Rahm 2015-08-12 13:59:05 -07:00
Родитель 928a195f43
Коммит e2ce0103de
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -67,7 +67,7 @@ class MachCommands(MachCommandBase):
if res != 0:
return 1
if ide == 'androidstudio' or 'intellij':
if ide in ('androidstudio', 'intellij'):
res = self._mach_context.commands.dispatch('package', self._mach_context)
if res != 0:
return 1