9b376dac92
also updates tgui
18 lines
220 B
Bash
18 lines
220 B
Bash
#!/bin/sh
|
|
|
|
#Basically run deploy.sh, but first
|
|
|
|
echo 'Deploying tgstation compilation...'
|
|
|
|
cd $1
|
|
|
|
mkdir build
|
|
|
|
shopt -s extglob dotglob
|
|
mv !(build) build
|
|
shopt -u dotglob
|
|
|
|
build/tools/deploy.sh $1 $1/build
|
|
|
|
rm -rf build
|