From 85da0dae281b8c0c4505640adf947b5be2effbfa Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Tue, 22 Nov 2016 00:19:51 +0100 Subject: [PATCH] fix printf --- testing/scenarios/server_env_regular.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/scenarios/server_env_regular.go b/testing/scenarios/server_env_regular.go index 29a6ee2e3..c4671a9f8 100644 --- a/testing/scenarios/server_env_regular.go +++ b/testing/scenarios/server_env_regular.go @@ -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() }