aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/VcpkgPowershellUtils.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/VcpkgPowershellUtils.ps1 b/scripts/VcpkgPowershellUtils.ps1
index 45f52b225..e394e540e 100644
--- a/scripts/VcpkgPowershellUtils.ps1
+++ b/scripts/VcpkgPowershellUtils.ps1
@@ -150,9 +150,9 @@ function vcpkgExtractFile( [Parameter(Mandatory=$true)][string]$file,
[Parameter(Mandatory=$true)][string]$outFilename)
{
vcpkgCreateDirectoryIfNotExists $destinationDir
- $output = "$destinationDir/$outFilename"
+ $output = "$destinationDir\$outFilename"
vcpkgRemoveItem $output
- $destinationPartial = "$destinationDir/partially-extracted"
+ $destinationPartial = "$destinationDir\partially-extracted"
vcpkgRemoveItem $destinationPartial
vcpkgCreateDirectoryIfNotExists $destinationPartial