Skip to content

Commit

Permalink
🐛 Fix maven command. (#51)
Browse files Browse the repository at this point in the history
Fix regression introduced in #50

Signed-off-by: Jeff Ortel <[email protected]>
  • Loading branch information
jortel authored Jan 8, 2024
1 parent 1119ca4 commit 3de14a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repository/maven.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ func (r *Maven) run(options command.Options) (err error) {
if err != nil {
return
}
cmd := command.New("/usr/bin/svn")
cmd := command.New("/usr/bin/mvn")
cmd.Options = options
cmd.Options.Addf("-DoutputDirectory=%s", r.BinDir)
cmd.Options.Addf("-Dmaven.repo.local=%s", r.M2Dir)
Expand Down

0 comments on commit 3de14a3

Please sign in to comment.