From 1e22166939f3e5ef7b7ff439e724f69f4a923f89 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Thu, 5 Aug 2021 21:06:55 -0700 Subject: [PATCH] adjust error message --- weed/shell/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/shell/commands.go b/weed/shell/commands.go index 0e285214b..697c68ae3 100644 --- a/weed/shell/commands.go +++ b/weed/shell/commands.go @@ -75,7 +75,7 @@ func (ce *CommandEnv) confirmIsLocked() error { return nil } - return fmt.Errorf("need to lock to continue") + return fmt.Errorf("need to run \"lock\" first to continue") }