diff options
| author | Merov Linden <merov@lindenlab.com> | 2014-02-27 15:17:36 -0800 | 
|---|---|---|
| committer | Merov Linden <merov@lindenlab.com> | 2014-02-27 15:17:36 -0800 | 
| commit | d3c45d65d0c53a38d05cfab92c2b2ef8b62d26bc (patch) | |
| tree | 55d07c703d6ef935e490626ac2870d802f3dc148 /indra | |
| parent | eb942229c4ccd93552166b1f59211a99112e3185 (diff) | |
| parent | 556506278ab870f5ac190d25a991511b74074325 (diff) | |
Pull merge of codesign workaround
Diffstat (limited to 'indra')
| -rwxr-xr-x | indra/newview/viewer_manifest.py | 17 | 
1 files changed, 16 insertions, 1 deletions
| diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index dcff9163e0..748655e4ed 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -625,7 +625,22 @@ class Windows_i686_Manifest(ViewerManifest):          NSIS_path = os.path.expandvars('${ProgramFiles}\\NSIS\\Unicode\\makensis.exe')          if not os.path.exists(NSIS_path):              NSIS_path = os.path.expandvars('${ProgramFiles(x86)}\\NSIS\\Unicode\\makensis.exe') -        self.run_command('"' + proper_windows_path(NSIS_path) + '" ' + self.dst_path_of(tempfile)) +        installer_created=False +        nsis_attempts=3 +        nsis_retry_wait=15 +        while (not installer_created) and (nsis_attempts > 0): +            try: +                nsis_attempts-=1; +                self.run_command('"' + proper_windows_path(NSIS_path) + '" ' + self.dst_path_of(tempfile)) +                installer_created=True # if no exception was raised, the codesign worked +            except ManifestError, err: +                if nsis_attempts: +                    print >> sys.stderr, "nsis failed, waiting %d seconds before retrying" % nsis_retry_wait +                    time.sleep(nsis_retry_wait) +                    nsis_retry_wait*=2 +                else: +                    print >> sys.stderr, "Maximum nsis attempts exceeded; giving up" +                    raise          # self.remove(self.dst_path_of(tempfile))          # If we're on a build machine, sign the code using our Authenticode certificate. JC          sign_py = os.path.expandvars("${SIGN}") | 
