Skip to content

Commit 2d98dfe

Browse files
author
Maik Roland Damm
committed
fix(setup): correct root directory path resolution in Windows setup script
1 parent c523fde commit 2d98dfe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/setup/setup-windows.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ $WithBundle = $false
99
$Warnings = New-Object System.Collections.Generic.List[string]
1010

1111
$ScriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
12-
$Root = Split-Path -Parent $ScriptDir
12+
$Root = Split-Path -Parent (Split-Path -Parent $ScriptDir)
1313

1414
function Show-Usage {
1515
@"

0 commit comments

Comments
 (0)