1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-04-26 15:39:08 -04:00

fix printf

This commit is contained in:
Darien Raymond
2016-11-22 00:19:51 +01:00
parent 6804d8f73a
commit 85da0dae28

View File

@@ -14,7 +14,7 @@ func BuildV2Ray() error {
return nil
}
fmt.Printf("Building V2Ray into path (%d)\n", testBinaryPath)
fmt.Printf("Building V2Ray into path (%s)\n", testBinaryPath)
cmd := exec.Command("go", "build", "-tags=json", "-o="+testBinaryPath, GetSourcePath())
return cmd.Run()
}