Skip to content

Commit

Permalink
sourceDistSuffix should be a settingKey (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Jul 24, 2023
1 parent 4647eed commit 9b9bc14
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -16,7 +16,7 @@ trait SourceDistKeys {
lazy val sourceDistIncubating: SettingKey[Boolean] = settingKey[Boolean](
"Should 'incubating' appear in the output archive file names (required by Apache Incubator podlings)"
)
lazy val sourceDistSuffix: TaskKey[String] = taskKey[String](
lazy val sourceDistSuffix: SettingKey[String] = settingKey[String](
"The suffix to be used in the output archive file names, defaults to today's date in YYMMDD format"
)
lazy val sourceDistGenerate: TaskKey[Unit] = taskKey[Unit]("Generate the source distribution packages")
Expand Down

0 comments on commit 9b9bc14

Please sign in to comment.