This repository was archived by the owner on Aug 31, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 3030import platform as _platform
3131import shutil
3232import tarfile
33+ import uuid
3334
3435# LiveCode build configuration script
3536import config
@@ -80,9 +81,6 @@ def get_buildtype():
8081def get_build_edition ():
8182 return os .environ .get ('BUILD_EDITION' , 'community' )
8283
83- def get_git_commit ():
84- return subprocess .check_output (['git' ,'rev-parse' ,'HEAD' ]).strip ()
85-
8684################################################################
8785# Defer to buildbot.mk
8886################################################################
@@ -160,8 +158,7 @@ def exec_make(target):
160158# even if a Python exception causes a non-local exit.
161159class UniqueMspdbsrv (object ):
162160 def __enter__ (self ):
163- os .environ ['_MSPDBSRV_ENDPOINT_' ] = '{}-{}-{}' .format (
164- get_build_edition (), get_git_commit ()[0 :8 ], get_buildtype ())
161+ os .environ ['_MSPDBSRV_ENDPOINT_' ] = str (uuid .uuid4 ())
165162
166163 mspdbsrv_exe = os .path .join (config .get_program_files_x86 (),
167164 'Microsoft Visual Studio 10.0\\ Common7\\ IDE\\ mspdbsrv.exe' )
You can’t perform that action at this time.
0 commit comments