Skip to content

Commit 64004a6

Browse files
Merge pull request #1595 from zhaoqin-github/v3.0.11.2
Fix CI error
2 parents 893b26d + dc1154d commit 64004a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

f5-sdk-dist/scripts/get-version-release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def main(args):
6363
(output, status) = runCommand('git describe --tags')
6464
if status == 0:
6565

66-
m = gitDescribeRe.match(output)
66+
m = gitDescribeRe.match(output.decode("utf-8"))
6767
if m:
6868
version = m.group(1)
6969
release = m.group(2)

0 commit comments

Comments
 (0)