forked from Baystation12/Baystation12
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
37 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
|
||
sudo dpkg --add-architecture i386 | ||
sudo apt update || true | ||
sudo apt remove -y libssl1.1:amd64 || true | ||
sudo apt install libgcc-s1:i386 | ||
sudo apt install -o APT::Immediate-Configure=false libc6:i386 | ||
wget http://ftp.de.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1n-0+deb10u6_i386.deb | ||
sudo dpkg -i libssl1.1_1.1.1n-0+deb10u6_i386.deb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,7 @@ | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
|
||
# Install dependencies | ||
sudo dpkg --add-architecture i386 | ||
sudo apt update || true | ||
sudo apt remove -y libssl1.1:amd64 || true | ||
sudo apt install libgcc-s1:i386 | ||
sudo apt install -o APT::Immediate-Configure=false libc6:i386 | ||
wget http://ftp.de.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1n-0+deb10u6_i386.deb | ||
sudo dpkg -i libssl1.1_1.1.1n-0+deb10u6_i386.deb | ||
|
||
# Download rust_g | ||
mkdir -p ~/.byond/bin | ||
wget -O ~/.byond/bin/librust_g.so "https://github.com/ss220-space/rust-g-tg/releases/download/2.0.0-ss220/librust_g.so" | ||
wget -O ~/.byond/bin/librust_g.so "https://github.com/${RUST_G_REPO}/releases/download/${RUST_G_VERSION}/librust_g.so" | ||
chmod +x ~/.byond/bin/librust_g.so | ||
ldd ~/.byond/bin/librust_g.so |