diff options
author | Oz Linden <oz@lindenlab.com> | 2020-08-25 12:35:04 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2020-08-25 12:35:04 -0400 |
commit | 50509a56b6714a1a075463a02e5a853d97a3c461 (patch) | |
tree | 61347b044a89a3b983c2e4fbd42634ffaa0628d9 /indra/newview/viewer_manifest.py | |
parent | 6a9c89fd62ee458dff4f2ade76d44947b99e472a (diff) |
SL-10297 fix check for bugsplat
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index c636f1d910..6161a8b413 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -673,7 +673,7 @@ class WindowsManifest(ViewerManifest): self.path("libvlccore.dll") self.path("plugins/") - if not bugsplat_db: # don't include the win_crash_logger if we are using BugSplat + if not self.args.get('bugsplat'): # don't include the win_crash_logger if we are using BugSplat # pull in the crash logger from other projects # tag:"crash-logger" here as a cue to the exporter self.path(src='../win_crash_logger/%s/windows-crash-logger.exe' % self.args['configuration'], |