Followup to bug 579178 part B (packaging) - only create the mochitest distribution bundle directory if it doesn't already exist

This commit is contained in:
Benjamin Smedberg 2010-07-22 10:44:38 -04:00
Родитель 0736255572
Коммит 1655130cfc
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -692,7 +692,8 @@ overlay chrome://browser/content/browser.xul chrome://mochikit/content/browser-t
def installChromeFile(self, filename, options):
(path, leaf) = os.path.split(options.app)
manifestdir = os.path.join(path, "distribution", "bundles", "mochitest")
os.makedirs(manifestdir)
if not os.path.exists(manifestdir):
os.makedirs(manifestdir)
manifest = os.path.join(manifestdir, "chrome.manifest")
shutil.copy(filename, manifest)
return manifest