diff options
| -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(): | 
