mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-31 20:11:56 +00:00
10 lines
269 B
Bash
10 lines
269 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
source dependencies.sh
|
|
|
|
mkdir -p ~/.byond/bin
|
|
wget -nv -O ~/.byond/bin/libauxlua.so "https://github.com/$AUXLUA_REPO/releases/download/$AUXLUA_VERSION/libauxlua.so"
|
|
chmod +x ~/.byond/bin/libauxlua.so
|
|
ldd ~/.byond/bin/libauxlua.so
|