Skip to content

Commit

Permalink
Tiny build cleanup (avoid deprecation warning) (#19776)
Browse files Browse the repository at this point in the history
 replace deprecated sbt API call
  • Loading branch information
SethTisue authored Feb 26, 2024
2 parents 5a884bc + c7f6287 commit e0cb1e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/PublishBinPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ object PublishBinPlugin extends AutoPlugin {
override val globalSettings = Seq(publishLocalBin := (()))

override val projectSettings: Seq[Def.Setting[_]] = Def settings (
publishLocalBin := Classpaths.publishTask(publishLocalBinConfig).value,
publishLocalBin := Classpaths.publishOrSkip(publishLocalBinConfig, publishLocal / skip).value,
publishLocalBinConfig := Classpaths.publishConfig(
false, // publishMavenStyle.value,
Classpaths.deliverPattern(crossTarget.value),
Expand Down

0 comments on commit e0cb1e7

Please sign in to comment.