File tree 2 files changed +6
-4
lines changed
modules/build/src/main/scala/scala/build
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ object Build {
224
224
options : BuildOptions ,
225
225
logger : Logger
226
226
)(using ScalaCliInvokeData ) =
227
- CrossSources .forInputs (
227
+ CrossSources .forModuleInputs (
228
228
inputs,
229
229
Sources .defaultPreprocessors(
230
230
options.archiveCache,
@@ -238,7 +238,8 @@ object Build {
238
238
239
239
private def build (
240
240
inputs : Module ,
241
- crossSources : CrossSources ,options : BuildOptions ,
241
+ crossSources : CrossSources ,
242
+ options : BuildOptions ,
242
243
logger : Logger ,
243
244
buildClient : BloopBuildClient ,
244
245
compiler : ScalaCompiler ,
@@ -280,12 +281,12 @@ object Build {
280
281
281
282
val baseOptions = overrideOptions.orElse(sharedOptions)
282
283
283
- val inputs0 = if (allInputs .mayAppendHash) {
284
+ val inputs0 = if (inputs .mayAppendHash) {
284
285
updateInputs(
285
286
inputs,
286
287
overrideOptions.orElse(options) // update hash in inputs with options coming from the CLI or cross-building, not from the sources
287
288
)
288
- } else allInputs
289
+ } else inputs
289
290
290
291
val scopedSources = value(crossSources.scopedSources(baseOptions))
291
292
Original file line number Diff line number Diff line change @@ -232,6 +232,7 @@ object Deps {
232
232
def svm = ivy " org.graalvm.nativeimage:svm: $graalVmVersion"
233
233
def swoval = ivy " com.swoval:file-tree-views:2.1.12 "
234
234
def testInterface = ivy " org.scala-sbt:test-interface:1.0 "
235
+ def tomlScala = ivy " tech.sparse:toml-scala_2.13:0.2.2 "
235
236
val toolkitVersion = " 0.5.0"
236
237
val toolkitVersionForNative04 = " 0.3.0"
237
238
val toolkitVersionForNative05 = toolkitVersion
You can’t perform that action at this time.
0 commit comments