Files
LuaCsForBarotraumaEP/luacs-docs/scripts/location.ps1
peelz 1bb7843811 Move docs to luacs-docs/{lua,cs,landing-page}
luacs-docs/cs also has a proper http server for testing locally
2022-08-10 05:36:16 -04:00

15 lines
285 B
PowerShell

[System.Collections.ArrayList]$Locations = @()
function Change-Location($path) {
$loc = Get-Location
$Locations.Add($loc)
Set-Location $path
}
function Restore-Location {
$idx = $Locations.Count - 1
$loc = $Locations[$idx]
$Locations.RemoveAt($idx)
Set-Location $loc
}