diff --git a/cli/recipe/lint.go b/cli/recipe/lint.go
index 93ad59e4..cc6e09c9 100644
--- a/cli/recipe/lint.go
+++ b/cli/recipe/lint.go
@@ -99,7 +99,7 @@ var recipeLintCommand = &cli.Command{
 		if c.NArg() > 0 {
 			return
 		}
-		for name, _ := range catl {
+		for name := range catl {
 			fmt.Println(name)
 		}
 	},