This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
forked from gruntwork-io/terragrunt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
54 lines (46 loc) · 1.46 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
package main
import (
"os"
"strings"
"github.com/gruntwork-io/go-commons/errors"
"github.com/gruntwork-io/terragrunt/cli"
"github.com/gruntwork-io/terragrunt/shell"
"github.com/gruntwork-io/terragrunt/util"
"github.com/hashicorp/go-multierror"
)
// The main entrypoint for Terragrunt
func main() {
defer errors.Recover(checkForErrorsAndExit)
app := cli.NewApp(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(printErrorWithStackTrace(err))
util.GlobalFallbackLogEntry.Errorf(err.Error())
// exit with the underlying error code
exitCode, exitCodeErr := util.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)
}
}
func printErrorWithStackTrace(err error) string {
if err, ok := err.(*multierror.Error); ok {
var errsStr []string
for _, err := range err.Errors {
errsStr = append(errsStr, errors.PrintErrorWithStackTrace(err))
}
return strings.Join(errsStr, "\n")
}
return errors.PrintErrorWithStackTrace(err)
}