diff --git a/container/libs/codeql.py b/container/libs/codeql.py index 6c7c22a..a588335 100644 --- a/container/libs/codeql.py +++ b/container/libs/codeql.py @@ -68,6 +68,7 @@ def get_current_local_version(self): if ret_string is CalledProcessError: logger.error("Could not run codeql command") exit(self.ERROR_EXECUTING_CODEQL) + version_match = search("toolchain release ([0-9.]+)\.", ret_string) if not version_match: logger.error("Could not determine existing codeql version")