Skip to content

Commit

Permalink
[fix] chromiumedge driver doesn't install on arm64 when user specifie…
Browse files Browse the repository at this point in the history
…s "latest" for version (#862)

* added missing argument to getChromiumEdgeDriverArchitectureOld inside of chromiumEdgeBundleAvailable

* fixed spelling error
  • Loading branch information
jdpolicano authored Dec 13, 2023
1 parent 1a9576d commit 66b4926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/compute-download-urls.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ async function chromiumEdgeBundleAvailable(opts) {
urls.chromiumedge,
opts.drivers.chromiumedge.baseURL,
opts.drivers.chromiumedge.version,
getChromiumEdgeDriverArchitectureOld(opts.drivers.chromiumedge.platform)
getChromiumEdgeDriverArchitectureOld(opts.drivers.chromiumedge.platform, opts.drivers.chromiumedge.version)
);
try {
await got.head(url, { timeout: 10000 });
Expand Down

0 comments on commit 66b4926

Please sign in to comment.