From a22bc2547915189e60a65645b810865192599a8d Mon Sep 17 00:00:00 2001 From: Adrien Poly Date: Tue, 26 Sep 2023 09:44:43 +0200 Subject: [PATCH] fix errors -> error --- dists/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dists/install.sh b/dists/install.sh index ab0d21b86..b5d9a7b54 100755 --- a/dists/install.sh +++ b/dists/install.sh @@ -20,7 +20,7 @@ main() { check_command_exists() { if ! command -v $1 &> /dev/null then - errors "$1 command could not be found, please install it first" + error "$1 command could not be found, please install it first" exit 1 fi }