From caa28279addabee532cc75bae41a25add2a00f9d Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 6 Jun 2025 14:28:10 -0300 Subject: Fix: avoid dependency installation errors when there are missing package candidates (1) --- metadot | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3