| commit | 6ce3d76052ffd1e177b2b3741de096e928203b76 | [log] [tgz] |
|---|---|---|
| author | Matt Farina <matt@mattfarina.com> | Mon Sep 14 09:27:51 2015 -0400 |
| committer | Matt Farina <matt@mattfarina.com> | Mon Sep 14 09:27:51 2015 -0400 |
| tree | 809b8fd089e2f5c505843bda42d5ef9d5a5bdbf7 | |
| parent | 26d00c72affcacc472fdac42f0d59e2a71c66caf [diff] |
Removing unused error variable from tree.
diff --git a/cmd/tree.go b/cmd/tree.go index 0a276fd..377aba1 100644 --- a/cmd/tree.go +++ b/cmd/tree.go
@@ -1,7 +1,6 @@ package cmd import ( - "errors" "fmt" "os" "path/filepath" @@ -11,8 +10,6 @@ "github.com/Masterminds/cookoo" ) -var ErrPkgNotFound = errors.New("package not found") - // Tree prints a tree representing dependencies. func Tree(c cookoo.Context, p *cookoo.Params) (interface{}, cookoo.Interrupt) { buildContext, err := GetBuildContext()