Commit 02a09a7 1 parent 2144a93 commit 02a09a7 Copy full SHA for 02a09a7
File tree 2 files changed +17
-4
lines changed
2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 3
3
version : 1
4
4
# The BYOND version to use
5
5
# Must be interpreted as a string, keep quoted
6
- byond : " 515.1620 "
6
+ byond : ' 515.1633 '
7
7
# Folders to create in "<instance_path>/Configuration/GameStaticFiles/"
8
8
static_files :
9
9
# Config directory should be static
Original file line number Diff line number Diff line change @@ -12,11 +12,22 @@ cd "$1"
12
12
. dependencies.sh
13
13
cd " $original_dir "
14
14
15
+ git config --global user.name
16
+ if [ $? -eq 1 ]
17
+ then
18
+ git config --global user.name " paradise_tgs_script"
19
+ fi
20
+
21
+ git config --global user.email
22
+ if [ $? -eq 1 ]
23
+ then
24
+ git config --global user.email
" [email protected] "
25
+ fi
15
26
16
27
# update rust-g
17
28
if [ ! -d " rust-g" ]; then
18
29
echo " Cloning rust-g..."
19
- git clone https://github.com/tgstation /rust-g
30
+ git clone https://github.com/ParadiseSS13 /rust-g
20
31
cd rust-g
21
32
~ /.cargo/bin/rustup target add i686-unknown-linux-gnu
22
33
else
27
38
fi
28
39
29
40
echo " Deploying rust-g..."
30
- git checkout " $RUST_G_VERSION "
41
+ git reset --hard " $RUSTG_VERSION "
42
+ ./apply-patches.sh
43
+ cd paradise-rust-g
31
44
env PKG_CONFIG_ALLOW_CROSS=1 ~ /.cargo/bin/cargo build --release --features all --target=i686-unknown-linux-gnu
32
45
mv target/i686-unknown-linux-gnu/release/librust_g.so " $1 /librust_g.so"
33
- cd ..
46
+ cd ../../
You can’t perform that action at this time.
0 commit comments