From b22b63c2ba2ac5024f3c013c5828a7d6a4fb760e Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Wed, 5 Jan 2022 19:00:09 +0100 Subject: [PATCH] fix: only output if volumes selected for removal --- cli/app/remove.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cli/app/remove.go b/cli/app/remove.go index afc21564..7bc06a4a 100644 --- a/cli/app/remove.go +++ b/cli/app/remove.go @@ -141,7 +141,9 @@ var appRemoveCommand = &cli.Command{ logrus.Info("no volumes were removed") } } else { - logrus.Info("no volumes to remove") + if Volumes { + logrus.Info("no volumes to remove") + } } err = os.Remove(app.Path)