[Bf-blender-cvs] [93e78cb4333] codesign: Codesign: Allow input be relative path

Sergey Sharybin noreply at git.blender.org
Wed Jan 15 15:18:17 CET 2020


Commit: 93e78cb4333fd852ab09f58fba457b70957c520c
Author: Sergey Sharybin
Date:   Wed Jan 15 15:17:27 2020 +0100
Branches: codesign
https://developer.blender.org/rB93e78cb4333fd852ab09f58fba457b70957c520c

Codesign: Allow input be relative path

===================================================================

M	build_files/buildbot/slave_codesign.py

===================================================================

diff --git a/build_files/buildbot/slave_codesign.py b/build_files/buildbot/slave_codesign.py
index 8dedf5ffcd3..a82ee98b1b5 100755
--- a/build_files/buildbot/slave_codesign.py
+++ b/build_files/buildbot/slave_codesign.py
@@ -45,7 +45,7 @@ def create_argument_parser():
 def main():
     parser = create_argument_parser()
     args = parser.parse_args()
-    path_to_sign = args.path_to_sign
+    path_to_sign = args.path_to_sign.absolute()
 
     if sys.platform == 'win32':
         # When WIX packed is used to generate .msi on Windows the CPack will



More information about the Bf-blender-cvs mailing list