Skip to content

Commit

Permalink
install.sh: fix installer script for debian/ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jan 17, 2025
1 parent e8b2dde commit 84f0d10
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,18 @@ fi
if command -v apt-get >/dev/null 2>&1; then
if command -v sudo >/dev/null 2>&1; then
sudo apt-get install -y libusb-dev \
libsdl1.2-dev \
libsdl2-dev \
libfreetype6 \
libunwind-dev \
alsa-utils \
libasound2
libasound2-dev
else
apt-get install -y libusb-dev \
libsdl1.2-dev \
libsdl2-dev \
libfreetype6 \
libunwind-dev \
alsa-utils \
libasound2
libasound2-dev
fi
elif command -v pacman >/dev/null 2>&1; then
if command -v sudo >/dev/null 2>&1; then
Expand Down

0 comments on commit 84f0d10

Please sign in to comment.