From 45ade95b1923a3baf29505ef5536d9a525b6879a Mon Sep 17 00:00:00 2001 From: Kay0u Date: Fri, 25 Dec 2020 22:03:37 +0100 Subject: [PATCH] fix the fetch_package_to_test function --- lib/common.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/common.sh b/lib/common.sh index 6f59133..e05992d 100644 --- a/lib/common.sh +++ b/lib/common.sh @@ -279,6 +279,9 @@ function fetch_package_to_test() { # Check if the package directory is really here. if [ ! -d "$package_path" ]; then log_critical "Unable to find the directory $package_path for the package..." + fi +} + #================================================= # GET HOST ARCHITECTURE #=================================================