Skip to content

Commit fae1caf

Browse files
authored
Merge pull request #1401 from Nordix/tuomo/apt-get-usage
🌱 scripts: replace apt with apt-get
2 parents 9b6cdd9 + 9fd3c40 commit fae1caf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

scripts/ci-conformance.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ cleanup() {
4646
trap cleanup EXIT
4747

4848
# Ensure that python3-pip is installed.
49-
apt update
50-
apt install -y python3-pip
49+
apt-get update -y
50+
apt-get install -y python3-pip
5151
rm -rf /var/lib/apt/lists/*
5252

5353
# Install/upgrade pip and requests module explicitly for HTTP calls.

scripts/ci-e2e.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ cleanup() {
4747
trap cleanup EXIT
4848

4949
# Ensure that python3-pip is installed.
50-
apt update
51-
apt install -y python3-pip
50+
apt-get update -y
51+
apt-get install -y python3-pip
5252
rm -rf /var/lib/apt/lists/*
5353

5454
# Install/upgrade pip and requests module explicitly for HTTP calls.

0 commit comments

Comments
 (0)