Skip to content

Commit c20a8a7

Browse files
committedMay 17, 2023
remove binary from development
1 parent c619772 commit c20a8a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎.bin/geckodriver

-4.33 MB
Binary file not shown.

‎src/install.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ export async function download (geckodriverVersion: string = process.env.GECKODR
4747
throw new Error(`Couldn't find version property in Cargo.toml file: ${toml}`)
4848
}
4949
geckodriverVersion = version.split(' = ').pop().slice(1, -1)
50-
console.log(`Detected Geckodriver v${geckodriverVersion} to be latest`)
50+
log.info(`Detected Geckodriver v${geckodriverVersion} to be latest`)
5151
}
5252

5353
const url = getDownloadUrl(geckodriverVersion)
54-
console.log(`Downloading Geckodriver from ${url}`)
54+
log.info(`Downloading Geckodriver from ${url}`)
5555
const res = await fetch(url, fetchOpts)
5656

5757
if (!res.body) {

0 commit comments

Comments
 (0)
Please sign in to comment.