From 00a0fbe08945d93955a2bf4416ff2d6d9dbeb17e Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 30 Sep 2024 17:47:54 +0200 Subject: fix(common/init): Define `die` function --- common/init | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/init b/common/init index f8c8bb3..341e04c 100644 --- a/common/init +++ b/common/init @@ -26,6 +26,10 @@ require() { exit 1 fi } +die() { + echo "$1" + exit 1 +} # Prompt the user for a specific variable. # ## Args: -- cgit 1.4.1