diff options
author | spf13 <[email protected]> | 2014-02-21 18:33:46 -0500 |
---|---|---|
committer | spf13 <[email protected]> | 2014-02-21 18:33:46 -0500 |
commit | dc068ccb87a1def743280250e2ea41d91e05d37a (patch) | |
tree | 8efe38966f5ff46f63f11d863ee3e2a2b1fffefb /commands/limit_darwin.go | |
parent | 8fe78f6ff52496d4d3393495d6e598dceed15dda (diff) | |
download | hugo-dc068ccb87a1def743280250e2ea41d91e05d37a.tar.gz hugo-dc068ccb87a1def743280250e2ea41d91e05d37a.zip |
Fix imports so hugo builds on darwin
Diffstat (limited to 'commands/limit_darwin.go')
-rw-r--r-- | commands/limit_darwin.go | 6 |
1 files changed, 6 insertions, 0 deletions
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) } |