Skip to content

Commit

Permalink
Added new core component to filter non-unique components
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Lobunets committed Jan 20, 2015
1 parent 29307e3 commit 1d85a96
Show file tree
Hide file tree
Showing 4 changed files with 879 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/cascades/library.go
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ func addFileToLibrary(c *cli.Context, r library.Registrar, file string, name str
c := exec.Command(file, "--json")
out, err := c.Output()
if err != nil {
return fmt.Errorf("Cannot register component %s: %s", name, err.Error())
return fmt.Errorf("Cannot register component %s: %s\n", name, err.Error())
}
if err = json.Unmarshal(out, &entry); err != nil {
return err
Expand Down
Loading

0 comments on commit 1d85a96

Please sign in to comment.