mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-16 12:43:09 +00:00
* Update rust-g version to latest release (#59863) * Update rust version to latest release This should fix the fact our docker build has been failing for the past 10 days * Make wget not be quite so noisy * Update rust-g version to latest release Co-authored-by: oranges <email@oranges.net.nz>
10 lines
273 B
Bash
Executable File
10 lines
273 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
source dependencies.sh
|
|
|
|
mkdir -p ~/.byond/bin
|
|
wget -nv -O ~/.byond/bin/librust_g.so "https://github.com/tgstation/rust-g/releases/download/$RUST_G_VERSION/librust_g.so"
|
|
chmod +x ~/.byond/bin/librust_g.so
|
|
ldd ~/.byond/bin/librust_g.so
|