mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-02-25 18:16:56 +00:00
Merge pull request #2761 from dgreen-arm/backport-2.16-fix-rev-parse-in-abi-script
Backport 2.16: Change worktree_rev to HEAD for rev-parse
This commit is contained in:
commit
56216b5a3c
|
@ -107,7 +107,7 @@ class AbiChecker(object):
|
||||||
)
|
)
|
||||||
self.log.debug(worktree_output.decode("utf-8"))
|
self.log.debug(worktree_output.decode("utf-8"))
|
||||||
version.commit = subprocess.check_output(
|
version.commit = subprocess.check_output(
|
||||||
[self.git_command, "rev-parse", worktree_rev],
|
[self.git_command, "rev-parse", "HEAD"],
|
||||||
cwd=git_worktree_path,
|
cwd=git_worktree_path,
|
||||||
stderr=subprocess.STDOUT
|
stderr=subprocess.STDOUT
|
||||||
).decode("ascii").rstrip()
|
).decode("ascii").rstrip()
|
||||||
|
|
Loading…
Reference in a new issue