Skip to content

Commit

Permalink
Merge pull request #1326 from tpolecat/fix-ci
Browse files Browse the repository at this point in the history
fix publish/skip
  • Loading branch information
tpolecat authored Dec 6, 2020
2 parents 04dc9e7 + d02bd83 commit e24257f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ lazy val noPublishSettings = Seq(
)

lazy val noDottySettings = Seq(
(publish / skip) := isDotty.value,
(publish / skip) := (publish / skip).value || isDotty.value,
(Compile / sources) := { if (isDotty.value) Seq() else (Compile / sources).value },
(Test / sources) := { if (isDotty.value) Seq() else (Test / sources).value },
libraryDependencies := libraryDependencies.value.filterNot(_ => isDotty.value),
Expand Down

0 comments on commit e24257f

Please sign in to comment.