summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaresh Kamboju <naresh.kamboju@linaro.org>2015-12-02 14:49:14 +0530
committerNaresh Kamboju <naresh.kamboju@linaro.org>2015-12-02 14:51:38 +0530
commitdd82984c32fcb8f7caf980727e203fcb3b29f8b1 (patch)
tree1fbe1481fc9569e7879c70848b8e378877fa1511
parent89fea8cb94d92e6686cd3b3b5728f4a88266f556 (diff)
install-deps.sh : fix apt-get install with -y option
Change-Id: I16e6b598c90ea6741dc70ebabaec9d2b4c47b15f Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
-rwxr-xr-xcommon/scripts/install-deps.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/scripts/install-deps.sh b/common/scripts/install-deps.sh
index a188bb9..920db2f 100755
--- a/common/scripts/install-deps.sh
+++ b/common/scripts/install-deps.sh
@@ -29,7 +29,7 @@ do
else
wait_for_unlock_apt
echo "==== Install $pkg package ===="
- apt-get install $pkg
+ apt-get install -y $pkg
fi
done
exit 0