contrib/actions: use apt-get instead of apt

apt does not have a stable CLI interface. Don't use it in scripts.
This commit is contained in:
Vieno Hakkerinen 2021-04-05 21:33:04 +02:00
parent 34e8aed9f8
commit ca7a8ff528
No known key found for this signature in database
GPG Key ID: EEBB9726C2FF9EB2
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
set -e
apt update
apt install git subversion build-essential python gawk unzip libncurses5-dev zlib1g-dev libssl-dev wget time
apt clean
apt-get -y update
apt-get -y install git subversion build-essential python gawk unzip libncurses5-dev zlib1g-dev libssl-dev wget time
apt-get -y clean
rm -rf /var/lib/apt/lists/*