aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2018-02-06 13:31:03 -0800
committerGitHub <noreply@github.com>2018-02-06 13:31:03 -0800
commit3ccb391c34a21ac9cc323cb935c104ae26d5dc54 (patch)
treeed41baf1ee1add43ddf9314689fffcf4047465af /scripts
parent7d969169956190b0e201d9e3d42d14e30eb46a63 (diff)
parentf136732dcd308037d6adee7bfb404e1154f78369 (diff)
downloadvcpkg-3ccb391c34a21ac9cc323cb935c104ae26d5dc54.tar.gz
vcpkg-3ccb391c34a21ac9cc323cb935c104ae26d5dc54.zip
Merge pull request #2736 from McNeight/McNeight-2729
Fix for Issue #2729
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 722d337ca..4aaad3479 100644
--- a/scripts/VcpkgPowershellUtils.ps1
+++ b/scripts/VcpkgPowershellUtils.ps1
@@ -160,7 +160,7 @@ function vcpkgExtractFile( [Parameter(Mandatory=$true)][string]$file,
}
else
{
- Move-Item -Path $destinationPartial -Destination $output
+ Move-Item -Path "$destinationPartial" -Destination $output
}
}
@@ -220,4 +220,4 @@ function vcpkgFormatElapsedTime([TimeSpan]$ts)
}
throw $ts
-} \ No newline at end of file
+}