We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3a3993 commit 3a69a68Copy full SHA for 3a69a68
1 file changed
packaging/scripts/ensure-windows-theme-inputs.ps1
@@ -1,7 +1,15 @@
1
[CmdletBinding()]
2
param(
3
[string]$ThemeWorkspace,
4
- [string]$MsysRoot = $(if (-not [string]::IsNullOrWhiteSpace($env:MSYS2_LOCATION)) { $env:MSYS2_LOCATION } else { "C:\msys64" })
+ [string]$MsysRoot = $(if (-not [string]::IsNullOrWhiteSpace($env:GP_GNUSTEP_CLI_ROOT)) {
5
+ $env:GP_GNUSTEP_CLI_ROOT
6
+ } elseif (-not [string]::IsNullOrWhiteSpace($env:GNUSTEP_CLI_ROOT)) {
7
+ $env:GNUSTEP_CLI_ROOT
8
+ } elseif (-not [string]::IsNullOrWhiteSpace($env:MSYS2_LOCATION)) {
9
+ $env:MSYS2_LOCATION
10
+ } else {
11
+ "C:\msys64"
12
+ })
13
)
14
15
Set-StrictMode -Version Latest
0 commit comments