Skip to content

Commit d683697

Browse files
committed
Fix build-folder.ps1 to windows paths
1 parent 28795e9 commit d683697

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/Build-Folder.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ if(!$?){
1919
}
2020

2121
$installedPackages = (GetConfigValue 'global-win' 'installed-packages')
22-
$packagesFolder = "$installedPackages/../Packages"
23-
$pathToPowerShellPackage = "$packagesFolder/PowerShell"
22+
$packagesFolder = Join-Path $installedPackages "..\Packages"
23+
$pathToPowerShellPackage = Join-Path $packagesFolder "PowerShell"
2424

2525
# Deploy package locally.
2626
push-location $thisDir

0 commit comments

Comments
 (0)