forked from hashicorp/levant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
85 lines (72 loc) · 1.86 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package main
import (
"fmt"
"os"
"github.com/jrasell/levant/buildtime"
"github.com/mitchellh/cli"
)
// These variables are populated by govvv during build time to provide detailed
// version output information.
var (
Version = "dev"
BuildDate string
GitCommit string
GitBranch string
GitState string
GitSummary string
)
func main() {
exportBuildtimeConsts()
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
}
func exportBuildtimeConsts() {
buildtime.GitCommit = GitCommit
buildtime.GitBranch = GitBranch
buildtime.GitState = GitState
buildtime.GitSummary = GitSummary
buildtime.BuildDate = BuildDate
buildtime.Version = Version
}