mirror of https://github.com/v2ray/v2ray-core
typo
parent
27f3401848
commit
0b2df7f658
|
@ -24,7 +24,7 @@ func BuildV2Ray() error {
|
||||||
func RunV2Ray(configFile string) *exec.Cmd {
|
func RunV2Ray(configFile string) *exec.Cmd {
|
||||||
profile := "coversingle.out"
|
profile := "coversingle.out"
|
||||||
wd, err := os.Getwd()
|
wd, err := os.Getwd()
|
||||||
if err != nil {
|
if err == nil {
|
||||||
profile = filepath.Join(wd, profile)
|
profile = filepath.Join(wd, profile)
|
||||||
}
|
}
|
||||||
proc := exec.Command(binaryPath, "-config", configFile, "-test.run", "TestRunMainForCoverage", "-test.coverprofile", profile)
|
proc := exec.Command(binaryPath, "-config", configFile, "-test.run", "TestRunMainForCoverage", "-test.coverprofile", profile)
|
||||||
|
|
Loading…
Reference in New Issue