2016-06-07 18:01:00 +00:00
|
|
|
/*
|
|
|
|
Copyright 2016 The Kubernetes 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 main
|
|
|
|
|
|
|
|
import (
|
2016-10-21 21:31:19 +00:00
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
2016-06-07 18:01:00 +00:00
|
|
|
"github.com/spf13/cobra/doc"
|
|
|
|
"k8s.io/minikube/cmd/minikube/cmd"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2019-05-14 04:43:52 +00:00
|
|
|
if err := os.MkdirAll("./out/docs", os.FileMode(0755)); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2016-06-08 00:18:25 +00:00
|
|
|
cmd.RootCmd.DisableAutoGenTag = true
|
2019-05-14 04:43:52 +00:00
|
|
|
if err := doc.GenMarkdownTree(cmd.RootCmd, "./out/docs"); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2016-10-21 21:31:19 +00:00
|
|
|
|
2017-05-03 22:30:27 +00:00
|
|
|
f, err := os.Create("./out/docs/bash-completion")
|
2016-10-21 21:31:19 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
err = cmd.GenerateBashCompletion(f, cmd.RootCmd)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2016-06-07 18:01:00 +00:00
|
|
|
}
|