Bug 1197829 - Don't invoke the build system if paths or tags aren't passed to mach try. r=ahal

--HG--
extra : commitid : 2aOT5iclwsQ
This commit is contained in:
Chris Manchester 2015-08-26 12:48:28 -07:00
Родитель 786f80ff04
Коммит b9c19e7772
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -470,8 +470,9 @@ class PushToTry(MachCommandBase):
print('ERROR please commit changes before continuing')
sys.exit(1)
driver = self._spawn(BuildDriver)
driver.install_tests(remove=False)
if paths or tags:
driver = self._spawn(BuildDriver)
driver.install_tests(remove=False)
manifests_by_flavor = at.resolve_manifests(paths=paths, tags=tags)