[Bf-blender-cvs] [12525775800] blender-v2.81-release: Safer fix for make_update.py on buildbot

Sergey Sharybin noreply at git.blender.org
Tue Nov 12 14:30:08 CET 2019


Commit: 125257758007b0164ea1b7122b9c03476c3f871a
Author: Sergey Sharybin
Date:   Tue Nov 12 14:28:39 2019 +0100
Branches: blender-v2.81-release
https://developer.blender.org/rB125257758007b0164ea1b7122b9c03476c3f871a

Safer fix for make_update.py on buildbot

Makes it so compilation doesn't fail when the SVN updating
stumbles upon checkout which doesn't have correspondence in
a tag, but which isn't so risky as previous change.

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

M	build_files/utils/make_update.py

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

diff --git a/build_files/utils/make_update.py b/build_files/utils/make_update.py
index ec72514fdfc..552e7625267 100755
--- a/build_files/utils/make_update.py
+++ b/build_files/utils/make_update.py
@@ -108,7 +108,7 @@ def svn_update(args, release_version):
             if os.path.exists(svn_dirpath):
                 call(svn_non_interactive + ["cleanup", dirpath])
             # Switch to appropriate branch and update.
-            call(svn_non_interactive + ["switch", svn_url + dirname, dirpath])
+            call(svn_non_interactive + ["switch", svn_url + dirname, dirpath], exit_on_error=False)
             call(svn_non_interactive + ["update", dirpath])
 
 # Test if git repo can be updated.



More information about the Bf-blender-cvs mailing list