fix: only output if volumes selected for removal
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2022-01-05 19:00:09 +01:00
parent d9f3a11265
commit b22b63c2ba
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 3 additions and 1 deletions

View File

@ -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)