Merge branch 'doc/local_build_version_note' into 'master'

docs: fix version specific note on local build

See merge request espressif/esp-idf!10089
This commit is contained in:
Krzysztof Budzynski 2020-08-27 19:54:19 +08:00
commit ad7a1e3761

View File

@ -207,7 +207,7 @@ def get_version():
return (branch, "branch", False)
# Try to find the branch name even if docs are built locally
branch = subprocess.check_output(["git", "rev-parse", "--abbrev-ref", "HEAD"]).decode('utf-8')
branch = subprocess.check_output(["git", "rev-parse", "--abbrev-ref", "HEAD"]).strip().decode('utf-8')
if branch != "HEAD":
return (branch, "branch", False)