Functions/internal/GetEnvironmentConfigPath.ps1
|
Function GetEnvironmentConfigPath { [CmdletBinding()] param( [parameter(Mandatory=$true)] [string]$environment ) Join-path "env" "$environment.json" } |
|
Function GetEnvironmentConfigPath { [CmdletBinding()] param( [parameter(Mandatory=$true)] [string]$environment ) Join-path "env" "$environment.json" } |