summaryrefslogtreecommitdiff
path: root/.github/actions/pkginstall/install-apt.sh
blob: 2983c186d8057c552c90d0a18e0b84bff3b07ad5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash -x

# If called without arguments, just skip the rest
if [[ -z "$@" ]]; then
	exit
fi

# Don't care about these bits
echo 'path-exclude=/usr/share/doc/*' > /etc/dpkg/dpkg.cfg.d/99-exclude-cruft
echo 'path-exclude=/usr/share/locale/*' >> /etc/dpkg/dpkg.cfg.d/99-exclude-cruft
echo 'path-exclude=/usr/share/man/*' >> /etc/dpkg/dpkg.cfg.d/99-exclude-cruft

apt-get update
apt-get install -yq --no-install-suggests --no-install-recommends $@