summaryrefslogtreecommitdiff
path: root/static/get
blob: dea9f18b58f688341c5de2729e291f787550b894 (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/"
}