[bootstrap.ps1] Use older-powershell-friendly way to determine path

This commit is contained in:
Alexander Karatarakis 2016-09-19 13:59:32 -07:00
Родитель 62accba790
Коммит edb8b44b13
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -4,7 +4,8 @@ param(
[string]$disableMetrics = "0"
)
$vcpkgRoot = (get-item $PSScriptRoot).parent.FullName
$scriptsdir = split-path -parent $MyInvocation.MyCommand.Definition
$vcpkgRoot = Split-path $scriptsdir -Parent
$gitHash = git rev-parse HEAD
Write-Verbose("Git hash is " + $gitHash)