add taking time logs to the publish.ps1

pull/7014/head
mehmet-erim 5 years ago
parent 039815cfe5
commit 7aa71d63a4

@ -39,6 +39,7 @@ $commands = (
)
foreach ($command in $commands) {
$timer = [System.Diagnostics.Stopwatch]::StartNew()
Write-Host $command
Invoke-Expression $command
if ($LASTEXITCODE -ne '0' -And $command -notlike '*cd *') {
@ -46,4 +47,9 @@ foreach ($command in $commands) {
Set-Location $RootFolder
exit $LASTEXITCODE
}
$timer.Stop()
$total = $timer.Elapsed
Write-Output "-------------------------"
Write-Output "$command command took $total (Hours:Minutes:Seconds:Milliseconds)"
Write-Output "-------------------------"
}
Loading…
Cancel
Save