Skip to content

Commit

Permalink
change workdir
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Apr 30, 2020
1 parent b889f8b commit fa15219
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/runner/ci.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func newCIRunner(c config.JobConfiguration, cli *command.SauceCtlCli) (*ciRunner
func (r *ciRunner) Setup() error {
r.cli.Logger.Info().Msg("Run entry.sh")
var out bytes.Buffer
cmd := exec.Command("/home/testrunner/entry.sh", "&")
cmd := exec.Command("/home/seluser/entry.sh", "&")
cmd.Stderr = &out
if err := cmd.Run(); err != nil {
return errors.New("Couldn't start test: " + out.String())
Expand Down
2 changes: 1 addition & 1 deletion cli/runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

const logDir = "/var/log/cont"

var runnerConfigPath = "/home/testrunner/config.yaml"
var runnerConfigPath = "/home/seluser/config.yaml"

var logFiles = [...]string{
logDir + "/chrome_browser.log",
Expand Down

0 comments on commit fa15219

Please sign in to comment.