Skip to content

Commit

Permalink
increase wait time for printProgress before print anything
Browse files Browse the repository at this point in the history
  • Loading branch information
mhewedy committed May 2, 2020
1 parent 5fb3946 commit ec225a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/progress.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ec225a6

Please sign in to comment.