Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2020-02-03 19:03:51 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-02-03 19:03:51 +0300
commit3125cfceec35ef14374ae98f9a400e7a678287a2 (patch)
tree419b2e4743c5c642186d2e2904b4c8f543894e4b /build_files/buildbot/codesign/linux_code_signer.py
parent59e1c2f6296e38ab21f2650e32089c22b80777f6 (diff)
Codesign: Add codesign for macOS worker
Works similarly to Windows configuration where buildbot worker and codesign machines are communicating with each other using network drive.
Diffstat (limited to 'build_files/buildbot/codesign/linux_code_signer.py')
-rw-r--r--build_files/buildbot/codesign/linux_code_signer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/buildbot/codesign/linux_code_signer.py b/build_files/buildbot/codesign/linux_code_signer.py
index f1523851eb7..04935f67832 100644
--- a/build_files/buildbot/codesign/linux_code_signer.py
+++ b/build_files/buildbot/codesign/linux_code_signer.py
@@ -51,7 +51,7 @@ class LinuxCodeSigner(BaseCodeSigner):
self, file: AbsoluteAndRelativeFileName) -> bool:
if file.relative_filepath == Path('blender'):
return True
- if (file.relative_filepath.parts()[-3:-1] == ('python', 'bin') and
+ if (file.relative_filepath.parts[-3:-1] == ('python', 'bin') and
file.relative_filepath.name.startwith('python')):
return True
if file.relative_filepath.suffix == '.so':