Add missing -y in cloudron-setup

This commit is contained in:
Johannes Zellner
2019-01-10 15:28:56 +01:00
parent 14acdbe7d1
commit 6bdac3aaec

View File

@@ -140,7 +140,7 @@ echo ""
if [[ "${initBaseImage}" == "true" ]]; then
echo "=> Installing software-properties-common"
if ! apt-get install software-properties-common &>> "${LOG_FILE}"; then
if ! apt-get install -y software-properties-common &>> "${LOG_FILE}"; then
echo "Could not install software-properties-common (for add-apt-repository below). See ${LOG_FILE}"
exit 1
fi