1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 09:25:23 +00:00

fix printf

This commit is contained in:
Darien Raymond 2016-11-22 00:19:51 +01:00
parent 6804d8f73a
commit 85da0dae28
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

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()
}