You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
338 B

  1. $startTime = $(Get-Date)
  2. docker-compose build
  3. $elapsedTime = $(Get-Date) - $startTime
  4. $elapsedTime
  5. # "Beep" from: http://jeffwouters.nl/index.php/2012/03/get-your-geek-on-with-powershell-and-some-music/
  6. [console]::beep(900,400)
  7. [console]::beep(1000,400)
  8. [console]::beep(800,400)
  9. [console]::beep(400,400)
  10. [console]::beep(600,1600)