File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -1127,7 +1127,8 @@ object Build {
1127
1127
libraryDependencies += " org.scala-lang" % " scala-library" % stdlibVersion,
1128
1128
(Compile / scalacOptions) ++= Seq (
1129
1129
// Needed so that the library sources are visible when `dotty.tools.dotc.core.Definitions#init` is called
1130
- " -sourcepath" , (Compile / sourceDirectories).value.map(_.getCanonicalPath).distinct.mkString(File .pathSeparator),
1130
+ // NOTE: Do not use `sourceDirectories` since `sources` are currently pinned until `3.8.0`
1131
+ " -sourcepath" , (Compile / sources).value.map(_.getCanonicalPath).distinct.mkString(File .pathSeparator),
1131
1132
" -Yexplicit-nulls" ,
1132
1133
),
1133
1134
(Compile / doc / scalacOptions) ++= ScaladocConfigs .DefaultGenerationSettings .value.settings,
You can’t perform that action at this time.
0 commit comments