We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcce259 commit b379402Copy full SHA for b379402
src/cosalib/cmdlib.py
@@ -343,8 +343,9 @@ def parse_fcos_version_to_timestamp(version):
343
'''
344
Parses an FCOS build ID and verifies the versioning is accurate. Then
345
it verifies that the parsed timestamp has %Y%m%d format and returns that.
346
+ Also, parses older format for versions, for eg. 30.20190712.0
347
- m = re.match(r'^([0-9]{2})\.([0-9]{8})\.([0-9]+|dev)\.([0-9]+)$', version)
348
+ m = re.match(r'^([0-9]{2})\.([0-9]{8})\.([0-9]+|dev)(?:\.([0-9]+))?$', version)
349
if m is None:
350
raise Exception(f"Incorrect versioning for FCOS build {version}")
351
try:
0 commit comments