Skip to content

Commit 1856f16

Browse files
author
Jakob Helmecke
committed
Update scripts to remove error on apt-get install
1 parent b843051 commit 1856f16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/clean-install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if [ $# = 0 ]; then
88
fi
99

1010
apt-get update
11-
apt-get install -y --no-install-recommends $@
11+
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends "$@"
1212
apt-get clean -y
1313
rm -rf \
1414
/var/cache/debconf/* \

bin/clean-uninstall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [ $# = 0 ]; then
77
exit 1
88
fi
99

10-
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $@
10+
DEBIAN_FRONTEND=noninteractive apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false "$@"
1111
apt-get clean -y
1212
rm -rf \
1313
/var/cache/debconf/* \

0 commit comments

Comments
 (0)