Commit 93b91fb3 authored by thomasl's avatar thomasl

replace --force-yes by -y that is correct for the purpose of installting without confirmation

(--force-yes is made for another purpose: to install packages that are not correct)



git-svn-id: http://svn.eurecom.fr/openair4G/trunk@6033 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 4f616da0
...@@ -73,7 +73,7 @@ test_install_package() { ...@@ -73,7 +73,7 @@ test_install_package() {
} || { } || {
echo "$1 is not installed." echo "$1 is not installed."
OAI_INSTALLED=0 OAI_INSTALLED=0
$SUDO apt-get install --force-yes $1 $SUDO apt-get install -y $@
} }
fi fi
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment