mirror of https://github.com/v2ray/v2ray-core
update
parent
a4d76dc394
commit
243e3ced89
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"port": 50030,
|
"port": 50030,
|
||||||
"log": {
|
"log": {
|
||||||
"loglevel": "debug"
|
"loglevel": "info"
|
||||||
},
|
},
|
||||||
"inbound": {
|
"inbound": {
|
||||||
"listen": "127.0.0.1",
|
"listen": "127.0.0.1",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"port": 50031,
|
"port": 50031,
|
||||||
"log": {
|
"log": {
|
||||||
"loglevel": "debug"
|
"loglevel": "info"
|
||||||
},
|
},
|
||||||
"inbound": {
|
"inbound": {
|
||||||
"listen": "127.0.0.1",
|
"listen": "127.0.0.1",
|
||||||
|
|
|
@ -5,6 +5,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"runtime"
|
||||||
|
|
||||||
_ "github.com/v2ray/v2ray-core/app/router/rules"
|
_ "github.com/v2ray/v2ray-core/app/router/rules"
|
||||||
"github.com/v2ray/v2ray-core/common/log"
|
"github.com/v2ray/v2ray-core/common/log"
|
||||||
|
@ -35,7 +36,10 @@ func BuildV2Ray() error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
binaryPath = filepath.Join(dir, "v2ray.exe")
|
binaryPath = filepath.Join(dir, "v2ray")
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
binaryPath += ".exe"
|
||||||
|
}
|
||||||
cmd := exec.Command("go", "build", "-tags=json", "-o="+binaryPath, filepath.Join("github.com", "v2ray", "v2ray-core", "release", "server"))
|
cmd := exec.Command("go", "build", "-tags=json", "-o="+binaryPath, filepath.Join("github.com", "v2ray", "v2ray-core", "release", "server"))
|
||||||
return cmd.Run()
|
return cmd.Run()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue