diff options
author | brad kittenbrink <brad@lindenlab.com> | 2010-11-03 14:39:24 -0700 |
---|---|---|
committer | brad kittenbrink <brad@lindenlab.com> | 2010-11-03 14:39:24 -0700 |
commit | 65997a1f5bb05dd263063606c00e0633af282784 (patch) | |
tree | 51db98807604ada4a73b675b59461e4c10a1f21b /indra/newview/viewer_manifest.py | |
parent | 392cfa0d1bd658cbb17d80a1e3e862329aa311ea (diff) |
Added some logging to viewer_manifest.py to attempt to narrow down the Mac packaging failures a bit.
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rw-r--r-- | indra/newview/viewer_manifest.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 4b98a11091..4596938775 100644 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -743,6 +743,11 @@ class DarwinManifest(ViewerManifest): devfile = re.search("/dev/disk([0-9]+)[^s]", hdi_output).group(0).strip() volpath = re.search('HFS\s+(.+)', hdi_output).group(1).strip() + if devfile != '/dev/disk1': + # adding more debugging info based upon nat's hunches to the + # logs to help track down 'SetFile -a V' failures -brad + print "WARNING: 'SetFile -a V' command below is probably gonna fail" + # Copy everything in to the mounted .dmg if self.default_channel() and not self.default_grid(): |