Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit 8d8a8c6

Browse files
author
tro3
committed
Removing trailing slash from DoRun directory
1 parent 1050f75 commit 8d8a8c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration_testproj.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ func (p *IntegrationTestProject) DoRun(args []string) error {
148148
cmd.Stdout = &p.stdout
149149
cmd.Stderr = &p.stderr
150150
cmd.Env = p.env
151-
cmd.Dir = p.ProjPath("")
151+
cmd.Dir = filepath.Join(p.tempdir, ProjectRoot)
152152
status := cmd.Run()
153153
if *PrintLogs {
154154
if p.stdout.Len() > 0 {

0 commit comments

Comments
 (0)