Browse Source

Add build stopwatch

pull/658/head
Miguel Veloso 6 years ago
parent
commit
0a57e8df40
1 changed files with 14 additions and 0 deletions
  1. +14
    -0
      run-docker-compose-build.ps1

+ 14
- 0
run-docker-compose-build.ps1 View File

@ -0,0 +1,14 @@
$startTime = $(Get-Date)
docker-compose build
$elapsedTime = $(Get-Date) - $startTime
$elapsedTime
# "Beep" from: http://jeffwouters.nl/index.php/2012/03/get-your-geek-on-with-powershell-and-some-music/
[console]::beep(900,400)
[console]::beep(1000,400)
[console]::beep(800,400)
[console]::beep(400,400)
[console]::beep(600,1600)

Loading…
Cancel
Save