Add build stopwatch

This commit is contained in:
Miguel Veloso 2018-07-02 13:42:18 +01:00
parent 07ba966956
commit 0a57e8df40

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)