1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

update lokinet-bootstrap

This commit is contained in:
Jeff Becker 2020-01-10 18:11:08 -05:00
parent caad1dcd05
commit a615457316
No known key found for this signature in database
GPG key ID: F357B3B42F6F9B05

View file

@ -1,4 +1,10 @@
[CmdletBinding()]
param ()
$web = New-Object System.Net.WebClient
$web.DownloadFile('https://seed.lokinet.org/lokinet.signed', '%APPDATA%\.lokinet\bootstrap.signed')
if( -not ( Test-Path $env:APPDATA\.lokinet -PathType Container ) )
{
lokinet.exe -g
}
$web.DownloadFile("https://seed.lokinet.org/lokinet.signed", "$env:APPDATA\.lokinet\bootstrap.signed")