Commit 639d196a authored by Juan Batiz-Benet's avatar Juan Batiz-Benet

linted config

parent 80323eba
...@@ -45,7 +45,7 @@ func init() { ...@@ -45,7 +45,7 @@ func init() {
func configCmd(c *commander.Command, inp []string) error { func configCmd(c *commander.Command, inp []string) error {
// todo: implement --config filename flag. // todo: implement --config filename flag.
filename, err := config.ConfigFilename("") filename, err := config.Filename("")
if err != nil { if err != nil {
return err return err
} }
...@@ -103,8 +103,11 @@ func configCat(filename string) error { ...@@ -103,8 +103,11 @@ func configCat(filename string) error {
} }
defer file.Close() defer file.Close()
_, err = io.Copy(os.Stdout, file) if _, err = io.Copy(os.Stdout, file); err != nil {
return err return err
}
u.POut("\n")
return nil
} }
func configEditor(filename string) error { func configEditor(filename string) error {
......
...@@ -67,7 +67,7 @@ func main() { ...@@ -67,7 +67,7 @@ func main() {
func localNode() (*core.IpfsNode, error) { func localNode() (*core.IpfsNode, error) {
//todo implement config file flag //todo implement config file flag
cfg, err := config.ConfigLoad("") cfg, err := config.Load("")
if err != nil { if err != nil {
return nil, err return nil, err
} }
......
...@@ -32,8 +32,8 @@ var defaultConfigFile = `{ ...@@ -32,8 +32,8 @@ var defaultConfigFile = `{
} }
` `
// ConfigFilename returns the proper tilde expanded config filename. // Filename returns the proper tilde expanded config filename.
func ConfigFilename(filename string) (string, error) { func Filename(filename string) (string, error) {
if len(filename) == 0 { if len(filename) == 0 {
filename = defaultConfigFilePath filename = defaultConfigFilePath
} }
...@@ -42,9 +42,9 @@ func ConfigFilename(filename string) (string, error) { ...@@ -42,9 +42,9 @@ func ConfigFilename(filename string) (string, error) {
return u.TildeExpansion(filename) return u.TildeExpansion(filename)
} }
// ConfigLoad reads given file and returns the read config, or error. // Load reads given file and returns the read config, or error.
func ConfigLoad(filename string) (*Config, error) { func Load(filename string) (*Config, error) {
filename, err := ConfigFilename(filename) filename, err := Filename(filename)
if err != nil { if err != nil {
return nil, err return nil, err
} }
......
...@@ -7,7 +7,7 @@ import ( ...@@ -7,7 +7,7 @@ import (
func TestConfig(t *testing.T) { func TestConfig(t *testing.T) {
cfg, err := ConfigLoad("") cfg, err := Load("")
if err != nil { if err != nil {
t.Error(err) t.Error(err)
return return
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment