diff --git a/src/command/utility/get-bee.ts b/src/command/utility/get-bee.ts index 77533d29..aa7258fe 100644 --- a/src/command/utility/get-bee.ts +++ b/src/command/utility/get-bee.ts @@ -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())