Force profile selection for Windows installation actions
This commit is contained in:
parent
10ab9152d9
commit
ab4ce633db
|
@ -164,7 +164,7 @@ $null = New-Module {
|
||||||
|
|
||||||
$scriptPath = "$PSScriptRoot/../../Common/Scripts/config.fish";
|
$scriptPath = "$PSScriptRoot/../../Common/Scripts/config.fish";
|
||||||
|
|
||||||
if ($env:CONFIG_NAME) {
|
if ($env:CONFIG_NAME -or ($Script -eq "getProfiles")) {
|
||||||
$output = & {
|
$output = & {
|
||||||
if (-not $IsWindows) {
|
if (-not $IsWindows) {
|
||||||
$escapedPath = (fish -c 'string escape $argv' "$scriptPath");
|
$escapedPath = (fish -c 'string escape $argv' "$scriptPath");
|
||||||
|
|
|
@ -259,6 +259,10 @@ $null = New-Module {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (-not $env:CONFIG_NAME) {
|
||||||
|
Show-ProfileNamePrompt;
|
||||||
|
}
|
||||||
|
|
||||||
$initialized = $true;
|
$initialized = $true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue