Skip to content

Commit 376f28d

Browse files
Merged PR 28158: Fix issues with merging backports in packaging
Fix issues with merging backports in packaging
1 parent 25760bd commit 376f28d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/packaging/packaging.psm1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,6 @@ function Start-PSPackage {
552552
}
553553
foreach ($Distro in $Script:RedhatFddDistributions) {
554554
$Arguments["Distribution"] = $Distro
555-
$Arguments["HostArchitecture"] = $HostArchitecture
556555
if ($PSCmdlet.ShouldProcess("Create RPM Package for $Distro")) {
557556
Write-Verbose -Verbose "Creating RPM Package for $Distro"
558557
New-UnixPackage @Arguments
@@ -849,7 +848,7 @@ function New-UnixPackage {
849848
[string]$Iteration = "1",
850849

851850
[string]
852-
[ValidateSet("x86_64", "amd64", "aarch64", "native", "all", "noarch", "any")]
851+
[ValidateSet("x86_64", "amd64", "aarch64", "arm64", "native", "all", "noarch", "any")]
853852
$HostArchitecture,
854853

855854
[Switch]

0 commit comments

Comments
 (0)