Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 66b4926

Browse files
authoredDec 13, 2023
[fix] chromiumedge driver doesn't install on arm64 when user specifies "latest" for version (#862)
* added missing argument to getChromiumEdgeDriverArchitectureOld inside of chromiumEdgeBundleAvailable * fixed spelling error
1 parent 1a9576d commit 66b4926

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/compute-download-urls.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ async function chromiumEdgeBundleAvailable(opts) {
210210
urls.chromiumedge,
211211
opts.drivers.chromiumedge.baseURL,
212212
opts.drivers.chromiumedge.version,
213-
getChromiumEdgeDriverArchitectureOld(opts.drivers.chromiumedge.platform)
213+
getChromiumEdgeDriverArchitectureOld(opts.drivers.chromiumedge.platform, opts.drivers.chromiumedge.version)
214214
);
215215
try {
216216
await got.head(url, { timeout: 10000 });

0 commit comments

Comments
 (0)
Please sign in to comment.