1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-09-09 19:32:24 +08:00

Add newline to 'ipfs init' error message

This commit is contained in:
rht
2015-05-30 13:12:55 +07:00
parent 17d71c49ce
commit f5d5095b1b
2 changed files with 3 additions and 2 deletions

View File

@ -52,7 +52,7 @@ type NoRepoError struct {
var _ error = NoRepoError{}
func (err NoRepoError) Error() string {
return fmt.Sprintf("no ipfs repo found in %s. please run: ipfs init", err.Path)
return fmt.Sprintf("no ipfs repo found in %s.\nplease run: ipfs init", err.Path)
}
const (