Adds a fuckload of tool updates
also updates tgui
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
@echo off
|
||||
|
||||
powershell -NoProfile -ExecutionPolicy Bypass -File PostCompile.ps1 -game_path %1
|
||||
@@ -0,0 +1,18 @@
|
||||
param(
|
||||
$game_path
|
||||
)
|
||||
|
||||
Write-Host "Deploying tgstation compilation..."
|
||||
|
||||
cd $game_path
|
||||
|
||||
mkdir build
|
||||
|
||||
#.github is a little special cause of the prefix
|
||||
mv .github build/.github
|
||||
|
||||
mv * build #thank god it's that easy
|
||||
|
||||
&"build/tools/deploy.sh" $game_path $game_path/build
|
||||
|
||||
Remove-Item build -Recurse
|
||||
@@ -0,0 +1,17 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user