From: Silvio Rhatto Date: Fri, 6 Jun 2025 17:28:10 +0000 (-0300) Subject: Fix: avoid dependency installation errors when there are missing package candidates (1) X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;p=metadot.git Fix: avoid dependency installation errors when there are missing package candidates (1) --- diff --git a/metadot b/metadot index 85cc000..9bcb9bb 100755 --- a/metadot +++ b/metadot @@ -128,7 +128,8 @@ function metadot_deps { # package has no candidates for installation. #LC_ALL=C DEBIAN_FRONTEND=noninteractive sudo apt-get install -y $deps_to_install - for $dep in $deps_to_install; do + # This is more fault-tolerant + for dep in $deps_to_install; do LC_ALL=C DEBIAN_FRONTEND=noninteractive sudo apt-get install -y $dep done fi