From c8d11afc542763059e4533d27cc4ce6d8cd5e08f Mon Sep 17 00:00:00 2001 From: Ethan Roseman Date: Sat, 27 Mar 2021 22:37:36 +0900 Subject: [PATCH] tidying --- .gitignore | 2 ++ install.sh | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b051e18005..3f3dbd7677 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,8 @@ build.ninja *.msg.h *.bin *.o +*.zip +baserom.* build/ assets/ /docs/doxygen/ diff --git a/install.sh b/install.sh index fb18cf8037..9570270f39 100755 --- a/install.sh +++ b/install.sh @@ -4,7 +4,9 @@ if cat /etc/os-release | grep -E 'ID=debian|ID_LIKE=debian' &> /dev/null; then echo "Installing packages for Debian or derivative (apt)" - sudo apt install -y git python3 python3-pip python3-setuptools build-essential binutils-mips-linux-gnu zlib1g-dev libyaml-dev ninja-build || exit 1 + # Add i386 arch for wine32 + sudo dpkg --add-architecture i386 + sudo apt install -y git python3 python3-pip python3-setuptools build-essential binutils-mips-linux-gnu zlib1g-dev libyaml-dev ninja-build wine32 || exit 1 python3 -m pip install -U -r requirements.txt if [[ $1 == "--extra" ]]; then