Fix bug in updatecheck.py and add utfcpp to its dependency list

This commit is contained in:
Taylor Hornby 2020-03-11 09:11:28 -06:00
parent 2a6be9fd19
commit d582270abb
1 changed files with 5 additions and 1 deletions

View File

@ -82,6 +82,10 @@ def get_dependency_list():
GithubTagReleaseLister("google", "leveldb", "^v(\d+)\.(\d+)$",
{ "v1.13": (1, 13) }),
LevelDbVersionGetter()),
Dependency("utfcpp",
GithubTagReleaseLister("nemtrif", "utfcpp", "^v(\d+)\.(\d+)(?:\.(\d+))?$",
{ "v3.1": (3, 1), "v3.0.3": (3, 0, 3) }),
DependsVersionGetter("utfcpp"))
]
# Rust crates.
@ -354,7 +358,7 @@ def main():
if len(unchecked_dependencies) > 0:
unchecked_dependencies.sort()
print("WARNING: The following dependences are not being checked for updates by this script: " + unchecked_dependencies)
print("WARNING: The following dependences are not being checked for updates by this script: " + ', '.join(unchecked_dependencies))
status = 2
sys.exit(status)