PortValhalla/scripts/Common/Config/git/flow/install.ps1

9 lines
249 B
PowerShell
Raw Normal View History

2023-06-22 18:44:40 +00:00
$tempDir = Join-Path $([System.IO.Path]::GetTempPath()) $([System.IO.Path]::GetRandomFileName());
$null = New-Item -ItemType Directory $tempDir;
Push-Location "$tempDir";
. "$PSScriptRoot/config.sh";
Pop-Location;
Remove-Item -Recurse "$tempDir";