From d88ba193574e0bfa2edf7969f40f4bd8421959ee Mon Sep 17 00:00:00 2001 From: Henry Date: Sat, 7 Mar 2015 10:57:53 +0100 Subject: [PATCH] disabled 'ipfs update' command for now --- core/commands/update.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/core/commands/update.go b/core/commands/update.go index 715ac6354..6146cddb2 100644 --- a/core/commands/update.go +++ b/core/commands/update.go @@ -17,6 +17,16 @@ type UpdateOutput struct { } var UpdateCmd = &cmds.Command{ + Helptext: cmds.HelpText{ + Tagline: "Downloads and installs updates for IPFS (disabled)", + ShortDescription: `ipfs update is disabled until we can deploy the binaries to you over ipfs itself. + + please use 'go get -u github.com/jbenet/go-ipfs/cmd/ipfs' until then.`, + }, +} + +// TODO: unexported until we can deploy the binaries over ipfs +var updateCmd = &cmds.Command{ Helptext: cmds.HelpText{ Tagline: "Downloads and installs updates for IPFS", ShortDescription: "ipfs update is a utility command used to check for updates and apply them.",