aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmetadot3
1 files changed, 2 insertions, 1 deletions
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