Skip to content

Commit

Permalink
gitignore and pop os support
Browse files Browse the repository at this point in the history
  • Loading branch information
Curtis committed Nov 28, 2023
1 parent d1afd70 commit 9f8cbd7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -150,3 +150,6 @@ compile_commands.json

# Generated mod storage database
client/mod_storage.sqlite

# Default artefact director
artefacts/*
4 changes: 2 additions & 2 deletions util/minetester/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
OS=$(lsb_release -si)

# Check if the OS is Ubuntu
if [ "$OS" == "Ubuntu" ]; then
if [ "$OS" == "Ubuntu" ] || [ "$OS" == "Pop" ]; then
# If it's Ubuntu, execute the command
echo "You are running Ubuntu. Executing command..."
echo "You are running Ubuntu or Pop. Executing command..."
sudo apt-get install xvfb g++ make libzmq3-dev libtool pkg-config build-essential autoconf automake libc6-dev cmake libpng-dev libjpeg-dev libxi-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev libcurl4-gnutls-dev libfreetype6-dev zlib1g-dev libgmp-dev libjsoncpp-dev libzstd-dev libluajit-5.1-dev protobuf-compiler patchelf
elif [ "$OS" == "Arch" ]; then
echo "You are running Arch. Executing command..."
Expand Down

0 comments on commit 9f8cbd7

Please sign in to comment.