Skip to content

Commit

Permalink
Update scripts to remove error on apt-get install
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakob Helmecke committed Apr 5, 2019
1 parent b843051 commit 1856f16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/clean-install
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [ $# = 0 ]; then
fi

apt-get update
apt-get install -y --no-install-recommends $@
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends "$@"
apt-get clean -y
rm -rf \
/var/cache/debconf/* \
Expand Down
2 changes: 1 addition & 1 deletion bin/clean-uninstall
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ $# = 0 ]; then
exit 1
fi

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 "$@"
apt-get clean -y
rm -rf \
/var/cache/debconf/* \
Expand Down

0 comments on commit 1856f16

Please sign in to comment.