Skip to content

Commit ff1fa4e

Browse files
committed
Switch back to amd64 on macOS
1 parent de98ba9 commit ff1fa4e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
cli_assembly_format: zip
2020
gu_executable_ext: .cmd
2121
- os: macos-latest
22-
cli_assembly_id: macos-aarch64
22+
cli_assembly_id: macos-amd64
2323
cli_assembly_format: tar.gz
2424
steps:
2525
- uses: ilammy/msvc-dev-cmd@v1

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
cli_assembly_format: zip
4040
gu_executable_ext: .cmd
4141
- os: macos-latest
42-
cli_assembly_id: macos-aarch64
42+
cli_assembly_id: macos-amd64
4343
cli_assembly_format: tar.gz
4444
steps:
4545
- uses: ilammy/msvc-dev-cmd@v1

code/tool-support/tool-support-commons/src/main/java/io/projectenv/core/toolsupport/commons/commands/ExtractArchiveStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public LocalToolInstallationDetails executeInstallStep(File installationRoot, Lo
4343

4444
return intermediateInstallationDetails;
4545
} catch (IOException e) {
46-
throw new LocalToolInstallationStepException("failed to execute step", e);
46+
throw new LocalToolInstallationStepException("failed to extract archive from URI " + rawArchiveUri, e);
4747
}
4848
}
4949

0 commit comments

Comments
 (0)