Index: build/install-build-deps.sh |
diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh |
index 3dd36d0bdf0b1726174ce6592ea76c7dcf858896..f0ae0b14079c773262317d29c31b189ab87191a8 100755 |
--- a/build/install-build-deps.sh |
+++ b/build/install-build-deps.sh |
@@ -424,7 +424,7 @@ echo |
new_list_cmd="sudo apt-get install --reinstall $(echo $packages)" |
if new_list="$(yes n | LANGUAGE=en LANG=C $new_list_cmd)"; then |
# We probably never hit this following line. |
- echo "No missing packages, and the packages are up-to-date." |
+ echo "No missing packages, and the packages are up to date." |
elif [ $? -eq 1 ]; then |
# We expect apt-get to have exit status of 1. |
# This indicates that we cancelled the install with "yes n|". |
@@ -432,7 +432,7 @@ elif [ $? -eq 1 ]; then |
sed -e '1,/The following NEW packages will be installed:/d;s/^ //;t;d') |
new_list=$(echo "$new_list" | sed 's/ *$//') |
if [ -z "$new_list" ] ; then |
- echo "No missing packages, and the packages are up-to-date." |
+ echo "No missing packages, and the packages are up to date." |
else |
echo "Installing missing packages: $new_list." |
sudo apt-get install ${do_quietly-} ${new_list} |