From 6670aa771b0eb3a94f49db3073214a9ce28719ef Mon Sep 17 00:00:00 2001 From: timoxa0 Date: Sun, 3 Nov 2024 11:15:51 +0500 Subject: [PATCH] functions: Fix packages not found error --- common.d/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.d/functions.sh b/common.d/functions.sh index 89a1d30..afe0cc0 100644 --- a/common.d/functions.sh +++ b/common.d/functions.sh @@ -51,7 +51,7 @@ prepare_env() mkdir_if_not_exists "./raw" mkdir_if_not_exists "./tmp" [ ! -d "./packages" ] && { - log "Packages not found. Cannot continue" + log "Packages not found. Cannot continue" error exit 4 } }