Skip to content

Commit

Permalink
feat: update get-bee to fetch bee 2.4.0 (#560)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cafe137 authored Feb 11, 2025
1 parent 2199f37 commit 7ac4839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/command/utility/get-bee.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class GetBee extends RootCommand implements LeafCommand {
if (!archString || !platformString) {
throw Error(`Unsupported system: arch=${process.arch} platform=${process.platform}`)
}
const url = `https://github.com/ethersphere/bee/releases/download/v2.3.0/bee-${platformString}-${archString}${suffixString}`
const url = `https://github.com/ethersphere/bee/releases/download/v2.4.0/bee-${platformString}-${archString}${suffixString}`
this.console.info(`Downloading Bee from ${url}`)
await fetch(url)
.then(x => x.arrayBuffer())
Expand Down

0 comments on commit 7ac4839

Please sign in to comment.