diff --git a/Other/tap2socks/build.ps1 b/Other/tap2socks/build.ps1 deleted file mode 100644 index 51ba049f..00000000 --- a/Other/tap2socks/build.ps1 +++ /dev/null @@ -1,11 +0,0 @@ -Push-Location (Split-Path $MyInvocation.MyCommand.Path -Parent) - -$Env:CGO_ENABLED='0' -$Env:GOROOT_FINAL='/usr' - -$Env:GOOS='windows' -$Env:GOARCH='amd64' -go build -a -trimpath -asmflags '-s -w' -ldflags '-s -w' -o '..\release\tap2socks.exe' - -Pop-Location -exit $lastExitCode diff --git a/Other/tap2socks/deps.ps1 b/Other/tap2socks/deps.ps1 deleted file mode 100644 index 9162ef72..00000000 --- a/Other/tap2socks/deps.ps1 +++ /dev/null @@ -1,8 +0,0 @@ -Push-Location (Split-Path $MyInvocation.MyCommand.Path -Parent) - -rm -Force go.* -go mod init tap2socks -go mod tidy - -Pop-Location -exit $lastExitCode diff --git a/Other/tap2socks/go.mod b/Other/tap2socks/go.mod deleted file mode 100644 index 7232521c..00000000 --- a/Other/tap2socks/go.mod +++ /dev/null @@ -1,3 +0,0 @@ -module tap2socks - -go 1.17 diff --git a/Other/tap2socks/main.go b/Other/tap2socks/main.go deleted file mode 100644 index fbdbe4a2..00000000 --- a/Other/tap2socks/main.go +++ /dev/null @@ -1,5 +0,0 @@ -package main - -func main() { - -}