-
Notifications
You must be signed in to change notification settings - Fork 125
/
main.go
66 lines (54 loc) · 1.42 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package main
import (
"fmt"
"os"
"github.com/mitchellh/cli"
)
func main() {
os.Exit(Run(os.Args[1:]))
}
// Run sets up the commands and triggers RunCustom which inacts the correct
// run of Levant.
func Run(args []string) int {
return RunCustom(args, Commands(nil))
}
// RunCustom is the main function to trigger a run of Levant.
func RunCustom(args []string, commands map[string]cli.CommandFactory) int {
// Get the command line args. We shortcut "--version" and "-v" to
// just show the version.
for _, arg := range args {
if arg == "-v" || arg == "-version" || arg == "--version" {
newArgs := make([]string, len(args)+1)
newArgs[0] = "version"
copy(newArgs[1:], args)
args = newArgs
break
}
}
// Build the commands to include in the help now.
commandsInclude := make([]string, 0, len(commands))
for k := range commands {
switch k {
default:
commandsInclude = append(commandsInclude, k)
}
}
cli := &cli.CLI{
Args: args,
Commands: commands,
HelpFunc: cli.FilteredHelpFunc(commandsInclude, cli.BasicHelpFunc("levant")),
}
exitCode, err := cli.Run()
if err != nil {
_, pErr := fmt.Fprintf(os.Stderr, "Error executing CLI: %s\n", err.Error())
// If we are unable to log to stderr; try just printing the error to
// provide some insight.
if pErr != nil {
fmt.Print(pErr)
}
return 1
}
return exitCode
}