Skip to content

Commit

Permalink
feat: don't install suggested and recommended dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
xu-cheng committed Jun 5, 2024
1 parent a88ad7a commit 59f6d24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ echo "==> Install system packages"
export DEBIAN_FRONTEND=noninteractive
apt-get update -y
apt-get upgrade -y
apt-get install -y \
apt-get install -y --no-install-recommends --no-install-suggests \
curl \
fontconfig \
fonts-freefont-ttf \
Expand All @@ -61,7 +61,7 @@ apt-get install -y \
tar

# Dependencies needed by latexindent
apt-get install -y \
apt-get install -y --no-install-recommends --no-install-suggests \
libfile-homedir-perl \
libunicode-linebreak-perl \
libyaml-tiny-perl
Expand Down

0 comments on commit 59f6d24

Please sign in to comment.