We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b843051 commit 1856f16Copy full SHA for 1856f16
bin/clean-install
@@ -8,7 +8,7 @@ if [ $# = 0 ]; then
8
fi
9
10
apt-get update
11
-apt-get install -y --no-install-recommends $@
+DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends "$@"
12
apt-get clean -y
13
rm -rf \
14
/var/cache/debconf/* \
bin/clean-uninstall
@@ -7,7 +7,7 @@ if [ $# = 0 ]; then
7
exit 1
-apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $@
+DEBIAN_FRONTEND=noninteractive apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false "$@"
0 commit comments