We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78f38fa commit 20aaa69Copy full SHA for 20aaa69
src/command/utility/get-bee.ts
@@ -30,7 +30,7 @@ export class GetBee extends RootCommand implements LeafCommand {
30
if (!archString || !platformString) {
31
throw Error(`Unsupported system: arch=${process.arch} platform=${process.platform}`)
32
}
33
- const url = `https://github.com/ethersphere/bee/releases/download/v2.4.0/bee-${platformString}-${archString}${suffixString}`
+ const url = `https://github.com/ethersphere/bee/releases/download/v2.6.0/bee-${platformString}-${archString}${suffixString}`
34
this.console.info(`Downloading Bee from ${url}`)
35
await fetch(url)
36
.then(x => x.arrayBuffer())
0 commit comments