ps/Modules/Cole.PowerShell.Developer/Public/Get-RepoCheckpointPath.ps1
2023-05-30 22:51:22 -07:00

11 lines
248 B
PowerShell

function Get-RepoCheckpointPath {
<#
.SYNOPSIS
Get the path used by the Checkpoint-AllAvailableRepos and other places
#>
[CmdletBinding()]
[OutputType([string])]
param()
return Get-EnvironmentVariable "Checkpoint_DefaultPath"
}