소스 검색

fix printf

Darien Raymond 9 년 전
부모
커밋
85da0dae28
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      testing/scenarios/server_env_regular.go

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