From ec225a62b7400a86879cfffbbef7f8e8ce58a9a3 Mon Sep 17 00:00:00 2001 From: Muhammad Hewedy Date: Sat, 2 May 2020 05:43:14 +0300 Subject: [PATCH] increase wait time for printProgress before print anything --- cmd/progress.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/progress.go b/cmd/progress.go index 95565b2..a9be784 100644 --- a/cmd/progress.go +++ b/cmd/progress.go @@ -17,7 +17,7 @@ func PrintProgress(title string) *chan bool { default: const d = 3 * time.Second if i == 0 { - time.Sleep(500 * time.Millisecond) + time.Sleep(1 * time.Second) } else if i == 1 { fmt.Print(title + " ") time.Sleep(d)