Set noninteractive in assemble script too

We install the packages in the builder images so that things can
build.

Change-Id: I2e83158a9ba8517ff199c6efb6abf306b76b7d7d
This commit is contained in:
Monty Taylor 2020-06-26 08:27:38 -05:00
parent f2e9f556e8
commit 857b5896dd
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ function install_bindep {
bindep -l newline >> /output/bindep/run.txt || true
compile_packages=$(bindep -b compile || true)
if [ ! -z "$compile_packages" ] ; then
apt-get install -y ${compile_packages}
DEBIAN_FRONTEND=noninteractive apt-get install -y ${compile_packages}
fi
fi
}