mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 01:49:19 +00:00
20 lines
500 B
Bash
20 lines
500 B
Bash
#!/bin/sh
|
|
|
|
#Project dependencies file
|
|
#Final authority on what's required to fully build the project
|
|
|
|
#byond version
|
|
#note, this also needs to be changed in the Dockerfile's initial FROM command
|
|
#If someone has an idea for how to set that version within the Dockerfile itself without any other dependencies, feel free to PR it
|
|
export BYOND_MAJOR=512
|
|
export BYOND_MINOR=1441
|
|
|
|
#rust_g git tag
|
|
export RUST_G_VERSION=0.4.0
|
|
|
|
#bsql git tag
|
|
export BSQL_VERSION=v1.4.0.0
|
|
|
|
#node version
|
|
export NODE_VERSION=4
|