Skip to content

Commit

Permalink
Merge branch 'master' into use-biome
Browse files Browse the repository at this point in the history
  • Loading branch information
ueokande authored May 4, 2024
2 parents 5f20606 + 7afa789 commit 17f08e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/installer_mac.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ export class MacInstaller implements Installer {
`Artifact not found of Edge ${version} for platform ${this.platform.os} ${this.platform.arch}`,
);
}
artifact.Location;

core.info(
`Acquiring ${version} (${product.ProductVersion}) from ${artifact.Location}`,
Expand Down
2 changes: 2 additions & 0 deletions src/platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ export const getArch = (): Arch => {
return Arch.I686;
case "x64":
return Arch.AMD64;
case "arm64":
return Arch.ARM64;
}
throw new Error(`Unsupported arch: ${arch}`);
};
Expand Down

0 comments on commit 17f08e1

Please sign in to comment.