mirror of
https://github.com/rwinkhart/go-boilerplate.git
synced 2026-08-28 04:46:41 -04:00
Always hard exit in PrintError(); do not pointlessly return the error code in soft exit
This commit is contained in:
+2
-2
@@ -3,6 +3,6 @@
|
||||
package back
|
||||
|
||||
// Exit (soft) is meant to be used in interactive implementations (GUIs/TUIs) to keep the program running after an operation.
|
||||
func Exit(code int) int {
|
||||
return code
|
||||
func Exit(code int) {
|
||||
return
|
||||
}
|
||||
|
||||
+3
-8
@@ -9,13 +9,8 @@ import (
|
||||
|
||||
// PrintError prints an error message in the MUTN format and exits with the specified exit code.
|
||||
// Requires: message (the error message to print),
|
||||
// exitCode (the exit code to use),
|
||||
// forceHardExit (if true, exit immediately; if false, allow soft exit for interactive clients).
|
||||
func PrintError(message string, exitCode int, forceHardExit bool) {
|
||||
// exitCode (the exit code to use)
|
||||
func PrintError(message string, exitCode int) {
|
||||
fmt.Println(back.AnsiError + message + back.AnsiReset)
|
||||
if forceHardExit {
|
||||
os.Exit(exitCode)
|
||||
} else {
|
||||
back.Exit(exitCode)
|
||||
}
|
||||
os.Exit(exitCode)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user