From dc068ccb87a1def743280250e2ea41d91e05d37a Mon Sep 17 00:00:00 2001 From: spf13 Date: Fri, 21 Feb 2014 18:33:46 -0500 Subject: [PATCH] Fix imports so hugo builds on darwin --- commands/limit_darwin.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/commands/limit_darwin.go b/commands/limit_darwin.go index 507dd1ce5..6f5c60f7f 100644 --- a/commands/limit_darwin.go +++ b/commands/limit_darwin.go @@ -14,6 +14,12 @@ package commands +import ( + "fmt" + "github.com/spf13/cobra" + "syscall" +) + func init() { check.AddCommand(limit) }