Skip to content

Commit

Permalink
fixes for micro release version
Browse files Browse the repository at this point in the history
Signed-off-by: Karl W. Schulz <[email protected]>
  • Loading branch information
koomie committed Feb 8, 2023
1 parent 03b3dc2 commit 0a1f5b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions misc/obs/obs_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ def __init__(self, version):
if self.microVer == '0':
self.obsProject = "OpenHPC:" + self.branchVer + ":Factory"
else:
self.obsProject = (
"OpenHPC:" + self.branchVer +
":Update" + self.microVer + ":Factory"
self.obsProject= (
"OpenHPC:" + self.branchVer + "." +
self.microVer + ":Factory"
)
logging.info("--> OBS project = %s" % self.obsProject)

Expand Down Expand Up @@ -669,7 +669,7 @@ def addPackage(
if self.microVer == '0':
contents = contents.replace('!VERSION!', "2.x")
else:
contents = contents.replace('!VERSION!', self.vip)
contents = contents.replace('!VERSION!',"2.x")

fp_serv = tempfile.NamedTemporaryFile(delete=True, mode='w')
fp_serv.write(contents)
Expand Down

0 comments on commit 0a1f5b6

Please sign in to comment.