mirror of
https://github.com/KabKebab/GS13.git
synced 2026-02-09 15:17:41 +00:00
19 lines
299 B
PowerShell
19 lines
299 B
PowerShell
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
|