Skip to content

Commit

Permalink
fix(tools): osx x64 arch string
Browse files Browse the repository at this point in the history
Signed-off-by: r3drun3 <[email protected]>
  • Loading branch information
R3DRUN3 committed Mar 19, 2024
1 parent 9b43ce6 commit 3ecbc07
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tools/azdo_pipelines/run-extractor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ stages:
elseif ("$(Agent.OS)" -like "*mac*" -and "$(Agent.OSArchitecture)" -like "*arm*") {
$extractorFileName = "extractor.osx-arm64"
}
elseif ("$(Agent.OS)" -like "*mac*" -and "$(Agent.OSArchitecture)" -like "*x64*") {
elseif ("$(Agent.OS)" -like "*mac*" -and "$(Agent.OSArchitecture)" -like "*x86_64*") {
$extractorFileName = "extractor.osx-x64"
}
Expand Down
2 changes: 1 addition & 1 deletion tools/azdo_pipelines/run-publisher-with-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ steps:
elseif ("$(Agent.OS)" -like "*mac*" -and "$(Agent.OSArchitecture)" -like "*arm*") {
$publisherFileName = "publisher.osx-arm64"
}
elseif ("$(Agent.OS)" -like "*mac*" -and "$(Agent.OSArchitecture)" -like "*x64*") {
elseif ("$(Agent.OS)" -like "*mac*" -and "$(Agent.OSArchitecture)" -like "*x86_64*") {
$publisherFileName = "publisher.osx-x64"
}
Expand Down
2 changes: 1 addition & 1 deletion tools/github_workflows/run-extractor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
elseif ("${{ runner.os }}" -like "*mac*" -and "${{ runner.arch }}" -like "*arm*") {
$extractorFileName = "extractor.osx-arm64"
}
elseif ("${{ runner.os }}" -like "*mac*" -and "${{ runner.arch }}" -like "*x64*") {
elseif ("${{ runner.os }}" -like "*mac*" -and "${{ runner.arch }}" -like "*x86_64*") {
$extractorFileName = "extractor.osx-x64"
}
Expand Down
8 changes: 4 additions & 4 deletions tools/github_workflows/run-publisher-with-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
elseif ("${{ runner.os }}" -like "*mac*" -and "${{ runner.arch }}" -like "*arm*") {
$publisherFileName = "publisher.osx-arm64"
}
elseif ("${{ runner.os }}" -like "*mac*" -and "${{ runner.arch }}" -like "*x64*") {
elseif ("${{ runner.os }}" -like "*mac*" -and "${{ runner.arch }}" -like "*x86_64*") {
$publisherFileName = "publisher.osx-x64"
}
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
else if("${{ runner.os }}" -like "*mac*" && "${{ runner.arch }}" -like "*arm*"){
$publisherFileName = "publisher.osx-arm64"
}
elseif ("${{ runner.os }}" -like "*mac*" -and "${{ runner.arch }}" -like "*x64*") {
elseif ("${{ runner.os }}" -like "*mac*" -and "${{ runner.arch }}" -like "*x86_64*") {
$publisherFileName = "publisher.osx-x64"
}
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
else if("${{ runner.os }}" -like "*mac*" && "${{ runner.arch }}" -like "*arm*"){
$publisherFileName = "publisher.osx-arm64"
}
elseif ("${{ runner.os }}" -like "*mac*" -and "${{ runner.arch }}" -like "*x64*") {
elseif ("${{ runner.os }}" -like "*mac*" -and "${{ runner.arch }}" -like "*x86_64*") {
$publisherFileName = "publisher.osx-x64"
}
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
else if("${{ runner.os }}" -like "*mac*" && "${{ runner.arch }}" -like "*arm*"){
$publisherFileName = "publisher.osx-arm64"
}
elseif ("${{ runner.os }}" -like "*mac*" -and "${{ runner.arch }}" -like "*x64*") {
elseif ("${{ runner.os }}" -like "*mac*" -and "${{ runner.arch }}" -like "*x86_64*") {
$publisherFileName = "publisher.osx-x64"
}
Expand Down

0 comments on commit 3ecbc07

Please sign in to comment.