diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2025-06-06 14:28:10 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2025-06-06 14:28:10 -0300 |
commit | caa28279addabee532cc75bae41a25add2a00f9d (patch) | |
tree | 9b1983f604544eaee624e59fc67a8feecdfe816e | |
parent | 7e0a09f180759ea5568576e636b873da9b82acd5 (diff) | |
download | metadot-master.tar.gz metadot-master.tar.bz2 |
-rwxr-xr-x | metadot | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |