relase: get failed extract-vmlinux automation back working

Only the command is back in business, but it does not work:
https://github.com/cirosantilli/linux-kernel-module-cheat/issues/79
This commit is contained in:
Ciro Santilli 六四事件 法轮功
2019-07-14 00:00:04 +00:00
parent 4c71ac5072
commit 7b0ac771dc
7 changed files with 156 additions and 146 deletions

2
build
View File

@@ -553,7 +553,7 @@ Which components to build. Default: qemu-buildroot
else:
git_version_tuple = tuple(
int(x) for x in self.sh.check_output(['git', '--version']) \
.split(' ')[-1].split('.')
.decode().split(' ')[-1].split('.')
)
if git_version_tuple >= (2, 9, 0):
# https://stackoverflow.com/questions/26957237/how-to-make-git-clone-faster-with-multiple-threads/52327638#52327638