Include console logs in Linux crash reports.

This commit is contained in:
Asher Baker
2016-01-13 16:25:03 +00:00
parent b24de4743c
commit 2319e8b926
6 changed files with 99 additions and 10 deletions
+5 -1
View File
@@ -67,12 +67,16 @@ class CopyFile(Command):
shutil.copy(self.fromFile, self.toPath)
folders = [['addons', 'sourcemod', 'extensions']]
folders = [
['addons', 'sourcemod', 'gamedata'],
['addons', 'sourcemod', 'extensions'],
]
#Setup
job.AddCommand(DestroyPath(os.path.join(AMBuild.outputFolder, 'package')))
job.AddCommand(CreateFolders(folders))
job.AddCommand(CopyFile(os.path.join(AMBuild.sourceFolder, 'accelerator.games.txt'), os.path.join('addons', 'sourcemod', 'gamedata')))
job.AddCommand(CopyFile(os.path.join(AMBuild.sourceFolder, 'accelerator.autoload'), os.path.join('addons', 'sourcemod', 'extensions')))
bincopies = []