Browse Source

refactor: newlines only for no serve case

decentral1se 3 years ago
parent
commit
f92cca1ce8
No known key found for this signature in database GPG Key ID: 3789458B3D0C410
  1. 6
      distribusi.go

6
distribusi.go

@ -294,7 +294,11 @@ Example:
return
}
fmt.Println("done!")
if c.Bool("serve") {
fmt.Printf("done!")
} else {
fmt.Println("done!")
}
ch <- nil
return

Loading…
Cancel
Save