Skip to content

Commit

Permalink
fix(windows): update default pact output path
Browse files Browse the repository at this point in the history
  • Loading branch information
mefellows committed Feb 20, 2017
1 parent ac57322 commit 2c6c84d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dsl/pact.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func (p *Pact) Setup() *Pact {
args := []string{
fmt.Sprintf("--pact-specification-version %d", p.SpecificationVersion),
fmt.Sprintf("--pact-dir %s", filepath.FromSlash(p.PactDir)),
fmt.Sprintf("--log %s/pact.log", filepath.FromSlash(p.LogDir+"/"+"pact.log")),
fmt.Sprintf("--log %s", filepath.FromSlash(p.LogDir+"/"+"pact.log")),
fmt.Sprintf("--consumer %s", p.Consumer),
fmt.Sprintf("--provider %s", p.Provider),
}
Expand Down

0 comments on commit 2c6c84d

Please sign in to comment.