From fb614a480bfe4d72598790939d3d674ceddf1b6f Mon Sep 17 00:00:00 2001 From: Samdanae Imran Date: Sat, 5 Oct 2024 02:45:16 +1300 Subject: [PATCH] Try not replacing dashes with underscores to see how everything behaves --- build/Build.Pack.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Build.Pack.cs b/build/Build.Pack.cs index 79db7d20a..ed96adefe 100644 --- a/build/Build.Pack.cs +++ b/build/Build.Pack.cs @@ -449,7 +449,7 @@ void BuildMsiInstallerForPlatform(MSBuildTargetPlatform platform, AbsolutePath w string ConstructRedHatPackageFilename(string packageName, string architecture) { - var transformedVersion = FullSemVer.Replace("-", "_"); + var transformedVersion = FullSemVer; //.Replace("-", "_"); var filename = $"{packageName}-{transformedVersion}-1.{architecture}.rpm"; return filename; }