Skip to content

Commit

Permalink
Fix github changelog generator
Browse files Browse the repository at this point in the history
  • Loading branch information
muuki88 committed Nov 25, 2019
1 parent 23d9732 commit a5b986d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/ChangelogPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ object ChangelogPlugin extends AutoPlugin {
Seq(generateChangelogToken := None, generateChangelog := {
val log = streams.value.log
val parameters = githubChangeLogParser.parsed
Seq("github_changelog_generator", "--token", parameters.token) ! log match {
Seq("github_changelog_generator", "--user", "sbt", "--project", "sbt-native-packager", "--token", parameters.token) ! log match {
case 0 => log.success("CHANGELOG.md updated successfully")
case n => sys.error(s"Failed updating CHANGELOG.md. Process existed with status code $n")
}
Expand Down

0 comments on commit a5b986d

Please sign in to comment.