diff options
author | Bjørn Erik Pedersen <[email protected]> | 2018-04-11 08:31:18 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2018-04-11 09:50:19 +0200 |
commit | 73825cfc1c0b007830b24bb1947a565175b52d36 (patch) | |
tree | 0fe7b541c230da2f9dbf6890e73eea9d6e2e95b3 /commands/check_darwin.go | |
parent | a8f7fbbb10aa78f3ebac008d29d9969bb197393c (diff) | |
download | hugo-73825cfc1c0b007830b24bb1947a565175b52d36.tar.gz hugo-73825cfc1c0b007830b24bb1947a565175b52d36.zip |
commands: Make the limit command work again
See #4598
Diffstat (limited to 'commands/check_darwin.go')
-rw-r--r-- | commands/check_darwin.go | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/commands/check_darwin.go b/commands/check_darwin.go new file mode 100644 index 000000000..9291be84c --- /dev/null +++ b/commands/check_darwin.go @@ -0,0 +1,36 @@ +// Copyright 2018 The Hugo Authors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package commands + +import ( + "github.com/spf13/cobra" +) + +var _ cmder = (*checkCmd)(nil) + +type checkCmd struct { + *baseCmd +} + +func newCheckCmd() *checkCmd { + cc := &checkCmd{baseCmd: &baseCmd{cmd: &cobra.Command{ + Use: "check", + Short: "Contains some verification checks", + }, + }} + + cc.cmd.AddCommand(newLimitCmd().getCommand()) + + return cc +} |