Skip to content

Commit 22b40bf

Browse files
committed
Disable binary publishing in bridge
1 parent df84901 commit 22b40bf

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

project/Build.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,13 @@ object DottyBuild extends Build {
211211
),
212212
version :=
213213
"0.1.1-SNAPSHOT-" + VersionUtil.commitDate + "-" + VersionUtil.gitHash,
214-
// The sources should be published with crossPaths := false, the binaries
215-
// are unused so it doesn't matter.
214+
// The sources should be published with crossPaths := false since they
215+
// need to be compiled by the project using the bridge.
216216
crossPaths := false,
217217

218+
// Don't publish any binaries for the bridge because of the above
219+
publishArtifact in (Compile, packageBin) := false,
220+
218221
fork in Test := true,
219222
parallelExecution in Test := false
220223
).

0 commit comments

Comments
 (0)