Skip to content

Commit

Permalink
fix "chroimum" typo (#544)
Browse files Browse the repository at this point in the history
Co-authored-by: arnisgustins <[email protected]>
  • Loading branch information
arniscg and arnisgustins authored Jun 18, 2021
1 parent da28d38 commit a912029
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/compute-download-urls.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ function getChromiumEdgeDriverArchitecture(wantedArchitecture) {
function getLinuxChromiumEdgeDriverArchitecture(wantedArchitecture) {
// chromium edge supports linux 64 only
if (wantedArchitecture !== 'x64') {
throw new Error('Only x64 architecture is available for chroimum edge driver for linux');
throw new Error('Only x64 architecture is available for chromium edge driver for linux');
}

return 'linux64';
Expand All @@ -309,7 +309,7 @@ function getLinuxChromiumEdgeDriverArchitecture(wantedArchitecture) {
function getMacChromiumEdgeDriverArchitecture(wantedArchitecture) {
// chromium edge supports mac 64 only
if (wantedArchitecture !== 'x64') {
throw new Error('Only x64 architecture is available for chroimum edge driver for mac');
throw new Error('Only x64 architecture is available for chromium edge driver for mac');
}

return 'mac64';
Expand Down

0 comments on commit a912029

Please sign in to comment.