mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
12 lines
199 B
PowerShell
12 lines
199 B
PowerShell
$exec=(Split-Path $MyInvocation.MyCommand.Path -Parent)
|
|
$last=(Get-Location).Path
|
|
|
|
Set-Location $exec
|
|
|
|
rm -Force go.*
|
|
go mod init aiodns
|
|
go mod tidy
|
|
|
|
Set-Location $last
|
|
exit $lastExitCode
|