ci: fix fetch submodule error on python3

This commit is contained in:
He Yin Ling
2019-12-10 09:38:31 +08:00
parent 5991e7dd7a
commit fe521c9d12
2 changed files with 2 additions and 1 deletions

View File

@@ -32,6 +32,7 @@ class SubModule(object):
def _get_commit_id(self, path):
output = subprocess.check_output(["git", "ls-tree", "HEAD", path])
output = output.decode()
# example output: 160000 commit d88a262fbdf35e5abb372280eb08008749c3faa0 components/esp_wifi/lib
match = self.GIT_LS_TREE_OUTPUT_PATTERN.search(output)
return match.group(1)