diff --git a/ext/toolchain/commands1.py b/ext/toolchain/commands1.py index 04ac8c96..1eee3a41 100644 --- a/ext/toolchain/commands1.py +++ b/ext/toolchain/commands1.py @@ -1438,7 +1438,7 @@ class InternalCommands: def dist_name_rev(self, type): # find the version number (we're puting the rev in after this) pattern = '(.*\d+\.\d+\.\d+)(.*)' - replace = "\g<1>-%s@%s\g<2>" % ( + replace = "\g<1>-%s-%s\g<2>" % ( self.getGitBranchName(), self.getGitRevision()) return re.sub(pattern, replace, self.dist_name(type))