From ff519800f9c579f8e0e2e5dc9c7fe84aadfef571 Mon Sep 17 00:00:00 2001 From: Mathieu Grzybek Date: Wed, 8 Sep 2021 14:38:44 +0200 Subject: [PATCH] [healthcheck] fix https://github.com/InseeFrLab/onyxia-cli/issues/8 --- utils/console.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/console.go b/utils/console.go index def5fe3..41bc336 100644 --- a/utils/console.go +++ b/utils/console.go @@ -21,7 +21,7 @@ func PrintMessage(m string) { fmt.Print(m) } -func PrintErrorMessageAndExit(m string) { +func PrintErrorAndExit(m string) { fmt.Print(m) os.Exit(1) } \ No newline at end of file