From a36ac3b87781e9fa89eed75a76a0f57bef2526bb Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Mon, 30 Dec 2013 16:41:13 +0400 Subject: [PATCH] Add message after successful mirror update. --- cmd_mirror.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd_mirror.go b/cmd_mirror.go index 9e708320..c1901d4f 100644 --- a/cmd_mirror.go +++ b/cmd_mirror.go @@ -136,6 +136,8 @@ func aptlyMirrorUpdate(cmd *commander.Command, args []string) error { if err != nil { return fmt.Errorf("unable to update: %s", err) } + + fmt.Printf("\nMirror `%s` has been successfully updated.\n", repo.Name) return err }