From ff306407023f5e35e51e4f7d6badf3b6486f5d58 Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Tue, 14 Jun 2022 18:55:36 +0200 Subject: [PATCH] Fix an error when not downloading packages When not downloading packages, the function "get_sources" returns early because it begins with: [ "$GETPKG" = y ] || return The problem is that in this case it returns with an exit code inherited from the last executed instruction, which is the test (and therefore "false"). The solution is to change to return 0. --- common/libs/func_download_pkgs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/libs/func_download_pkgs b/common/libs/func_download_pkgs index 09ec7e7..3d369d2 100644 --- a/common/libs/func_download_pkgs +++ b/common/libs/func_download_pkgs @@ -5,7 +5,7 @@ get_sources() { # Download file, write name to MISSING_FILES.DMP if #----------------------------# # Test if the packages must be downloaded - [ "$GETPKG" = y ] || return + [ "$GETPKG" = y ] || return 0 local URL FILE BOOKMD5 MD5 HAVEMD5 fromARCHIVE WGETPARAM MAYBEMORE