summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdocumentation/set_versions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/set_versions.py b/documentation/set_versions.py
index 9049c1a680..a7ceb3455a 100755
--- a/documentation/set_versions.py
+++ b/documentation/set_versions.py
@@ -86,7 +86,7 @@ docconfver = None
86 86
87# Test tags exist and inform the user to fetch if not 87# Test tags exist and inform the user to fetch if not
88try: 88try:
89 subprocess.run(["git", "show", "yocto-3.4.2"], capture_output=True, check=True) 89 subprocess.run(["git", "show", "yocto-%s" % release_series[activereleases[0]]], capture_output=True, check=True)
90except subprocess.CalledProcessError: 90except subprocess.CalledProcessError:
91 sys.exit("Please run 'git fetch --tags' before building the documentation") 91 sys.exit("Please run 'git fetch --tags' before building the documentation")
92 92