summaryrefslogtreecommitdiff
path: root/static/get.ps1
blob: 062772b95960b9cdcce86eec6aadaa069e9bbc05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Check massgrave.dev for more details

Write-Host ""
Write-Host "The command 'irm https://massgrave.dev/get | iex' is retired."
Write-Host ""
Write-Host "Visit the site below for the new command:" -ForegroundColor Green
Write-Host ""
Write-Host "https://massgrave.dev/" -ForegroundColor Cyan
Write-Host ""

if (-not $args) {
    Write-Host "Press any key to open the website..."
    [void][System.Console]::ReadKey($true)

    Start-Process "https://massgrave.dev/"
}