diff options
-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 |