mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-09 16:07:40 +00:00
27 lines
570 B
Bash
27 lines
570 B
Bash
#!/bin/bash
|
|
|
|
#Project dependencies file
|
|
#Final authority on what's required to fully build the project
|
|
|
|
# byond version
|
|
# Extracted from the Dockerfile. Change by editing Dockerfile's FROM command.
|
|
LIST=($(sed -n 's/.*byond:\([0-9]\+\)\.\([0-9]\+\).*/\1 \2/p' Dockerfile))
|
|
export BYOND_MAJOR=${LIST[0]}
|
|
export BYOND_MINOR=${LIST[1]}
|
|
unset LIST
|
|
|
|
#rust_g git tag
|
|
export RUST_G_VERSION=0.4.4
|
|
|
|
#bsql git tag
|
|
export BSQL_VERSION=v1.4.0.0
|
|
|
|
#node version
|
|
export NODE_VERSION=12
|
|
|
|
# PHP version
|
|
export PHP_VERSION=5.6
|
|
|
|
# SpacemanDMM git tag
|
|
export SPACEMAN_DMM_VERSION=suite-1.4
|