Skip to content

Commit a8d3a02

Browse files
committed
Remove now unnecessary sudo
1 parent 26256ea commit a8d3a02

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

sources/SDL/Native/build-linux-arm.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ if [[ ! -z ${GITHUB_ACTIONS+x} ]]; then
1717
export PATH="$PATH:$(readlink -f "../../../eng/native/buildsystem/zig")"
1818

1919
# Dependency list is from https://github.com/libsdl-org/SDL/blob/main/docs/README-linux.md#build-dependencies
20-
sudo dpkg --add-architecture armhf
21-
sudo apt-get update
22-
sudo apt-get install -y \
20+
dpkg --add-architecture armhf
21+
apt-get update
22+
apt-get install -y \
2323
git cmake make build-essential \
2424
pkg-config ninja-build gnome-desktop-testing \
2525
libglib2.0-dev-bin \

sources/SDL/Native/build-linux-arm64.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ if [[ ! -z ${GITHUB_ACTIONS+x} ]]; then
1717
export PATH="$PATH:$(readlink -f "../../../eng/native/buildsystem/zig")"
1818

1919
# Dependency list is from https://github.com/libsdl-org/SDL/blob/main/docs/README-linux.md#build-dependencies
20-
sudo dpkg --add-architecture arm64
21-
sudo apt-get update
22-
sudo apt-get install -y \
20+
dpkg --add-architecture arm64
21+
apt-get update
22+
apt-get install -y \
2323
git cmake make build-essential \
2424
pkg-config ninja-build gnome-desktop-testing \
2525
libglib2.0-dev-bin \

0 commit comments

Comments
 (0)