forked from gruntwork-io/terragrunt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
50 lines (40 loc) · 1.48 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
package main
import (
"os"
"github.com/gruntwork-io/terragrunt/cli"
"github.com/gruntwork-io/terragrunt/errors"
"github.com/gruntwork-io/terragrunt/shell"
"github.com/gruntwork-io/terragrunt/util"
)
// This variable is set at build time using -ldflags parameters. For more info, see:
// http://stackoverflow.com/a/11355611/483528
var VERSION string
// The main entrypoint for Terragrunt
func main() {
// Log the terragrunt version in debug mode. This helps with debugging issues and ensuring a specific version of
// terragrunt used.
util.GlobalFallbackLogEntry.Debugf("Terragrunt Version: %s", VERSION)
defer errors.Recover(checkForErrorsAndExit)
app := cli.CreateTerragruntCli(VERSION, os.Stdout, os.Stderr)
err := app.Run(os.Args)
checkForErrorsAndExit(err)
}
// If there is an error, display it in the console and exit with a non-zero exit code. Otherwise, exit 0.
func checkForErrorsAndExit(err error) {
if err == nil {
os.Exit(0)
} else {
util.GlobalFallbackLogEntry.Debugf(errors.PrintErrorWithStackTrace(err))
util.GlobalFallbackLogEntry.Errorf(err.Error())
// exit with the underlying error code
exitCode, exitCodeErr := shell.GetExitCode(err)
if exitCodeErr != nil {
exitCode = 1
util.GlobalFallbackLogEntry.Errorf("Unable to determine underlying exit code, so Terragrunt will exit with error code 1")
}
if explain := shell.ExplainError(err); len(explain) > 0 {
util.GlobalFallbackLogEntry.Errorf("Suggested fixes: \n%s", explain)
}
os.Exit(exitCode)
}
}