Added NetHostBeef + Start of central preparation scripts

This commit is contained in:
Simon Lübeß
2023-07-21 19:37:50 +02:00
parent 457b43352a
commit 8296f1c5cd
4 changed files with 32 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
Write-Output "Preparing repository for development..."
# Change working directory to repository root
Push-Location ($PSScriptRoot + "/..")
$RootDirectory = $(Get-Location);
# Note: When adding new scripts make sure to use "Set-Location $RootDirectory" if the script changes the working directory
# Prepare NetHost
Push-Location "GlitchyEngine/vendor/NetHostBeef"
Invoke-Expression -Command "./downloadNethost.ps1"
Pop-Location
# Return to original working directory
Pop-Location