refactor: remove unnecesary loging, decrease retries
This commit is contained in:
parent
70e072279f
commit
27da3459ca
@ -88,8 +88,7 @@ export default async (options: Input): Promise<Output> => {
|
||||
if (!cacheHit) {
|
||||
info(`Downloading a new version of Bun: ${url}`);
|
||||
// TODO: remove this, temporary fix for https://github.com/oven-sh/setup-bun/issues/73
|
||||
revision = await retry(async () => await downloadBun(url, bunPath), 5);
|
||||
console.log("Downloaded Bun revision: " + revision);
|
||||
revision = await retry(async () => await downloadBun(url, bunPath), 3);
|
||||
}
|
||||
|
||||
if (!revision) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user