Skip to content

Commit

Permalink
is generator: remove dots from image version names
Browse files Browse the repository at this point in the history
  • Loading branch information
zmiklank authored and phracek committed Mar 25, 2024
1 parent a2aacd2 commit 8e9fddb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def obtain_image(self):
return self.latest
else:
return images[self.distro_name][self.repo_access] \
.replace("APP_VERSION", str(self.version)) \
.replace("APP_VERSION", str(self.version).replace(".","")) \
.replace("APP_NAME", self.app_name)

def __init__(self, header, distro_name, repo_access, version=None, latest=None):
Expand Down

0 comments on commit 8e9fddb

Please sign in to comment.