We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fa2df86 + 736fafb commit 7dbbd4eCopy full SHA for 7dbbd4e
pkg/system/exitcode.go
@@ -17,17 +17,3 @@ func GetExitCode(err error) (int, error) {
17
}
18
return exitCode, fmt.Errorf("failed to get exit code")
19
20
-
21
-// ProcessExitCode process the specified error and returns the exit status code
22
-// if the error was of type exec.ExitError, returns nothing otherwise.
23
-func ProcessExitCode(err error) (exitCode int) {
24
- if err != nil {
25
- var exiterr error
26
- if exitCode, exiterr = GetExitCode(err); exiterr != nil {
27
- // TODO: Fix this so we check the error's text.
28
- // we've failed to retrieve exit code, so we set it to 127
29
- exitCode = 127
30
- }
31
32
- return
33
-}
0 commit comments