8 lines
164 B
PowerShell
8 lines
164 B
PowerShell
|
<#
|
||
|
.SYNOPSIS
|
||
|
Gets the name of the WSL distribution used for reading configuration values.
|
||
|
#>
|
||
|
function Get-DistributionName {
|
||
|
return "ValhallaUbuntu";
|
||
|
}
|