Auto merge of #4807 - nuttycom:release-fix-updatecheck, r=nuttycom

Fix invocation of updatecheck.py in make-release.py
This commit is contained in:
Homu 2020-10-22 13:54:05 +00:00
commit d264471f2a
1 changed files with 4 additions and 3 deletions

View File

@ -128,9 +128,10 @@ def verify_dependencies(dependencies):
@phase('Checking dependency updates.')
def verify_dependency_updates():
status = subprocess.call(['python', 'qa/zcash/updatecheck.py'])
if status != 0:
raise SystemExit("Dependency update check did not pass.")
try:
sh_log('./qa/zcash/updatecheck.py')
except SystemExit:
raise SystemExit("Dependency update check found updates that have not been correctly postponed.")
@phase('Checking tags.')
def verify_tags(releaseprev, releasefrom):