8 lines
158 B
PowerShell
8 lines
158 B
PowerShell
|
<#
|
||
|
.SYNOPSIS
|
||
|
Gets the path to a directory to store setup artifacts.
|
||
|
#>
|
||
|
function Get-ArtifactRoot {
|
||
|
Join-Path "$env:ProgramData" "PortValhalla";
|
||
|
}
|