Bug 411218 - make the browser start in the foreground on mac talos a=anodelman r=rcampbell

This commit is contained in:
anodelman@mozilla.com 2008-01-08 17:14:43 -08:00
Родитель 5a703c9325
Коммит a8e69a490a
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -60,7 +60,7 @@ def GenerateFirefoxCommandLine(firefox_path, profile_dir, url):
if profile_dir:
profile_arg = '-profile %s' % profile_dir
cmd = '%s %s %s' % (firefox_path,
cmd = '%s -foreground %s %s' % (firefox_path,
profile_arg,
url)
return cmd