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 @@ -219,7 +219,7 @@ object Build {
219
219
options : BuildOptions ,
220
220
logger : Logger
221
221
)(using ScalaCliInvokeData ) =
222
- CrossSources .forInputs (
222
+ CrossSources .forModuleInputs (
223
223
inputs,
224
224
Sources .defaultPreprocessors(
225
225
options.archiveCache,
@@ -233,7 +233,8 @@ object Build {
233
233
234
234
private def build (
235
235
inputs : Module ,
236
- crossSources : CrossSources ,options : BuildOptions ,
236
+ crossSources : CrossSources ,
237
+ options : BuildOptions ,
237
238
logger : Logger ,
238
239
buildClient : BloopBuildClient ,
239
240
compiler : ScalaCompiler ,
@@ -275,12 +276,12 @@ object Build {
275
276
276
277
val baseOptions = overrideOptions.orElse(sharedOptions)
277
278
278
- val inputs0 = if (allInputs .mayAppendHash) {
279
+ val inputs0 = if (inputs .mayAppendHash) {
279
280
updateInputs(
280
281
inputs,
281
282
overrideOptions.orElse(options) // update hash in inputs with options coming from the CLI or cross-building, not from the sources
282
283
)
283
- } else allInputs
284
+ } else inputs
284
285
285
286
val scopedSources = value(crossSources.scopedSources(baseOptions))
286
287
Original file line number Diff line number Diff line change @@ -210,6 +210,7 @@ object Deps {
210
210
def svm = ivy " org.graalvm.nativeimage:svm: $graalVmVersion"
211
211
def swoval = ivy " com.swoval:file-tree-views:2.1.12 "
212
212
def testInterface = ivy " org.scala-sbt:test-interface:1.0 "
213
+ def tomlScala = ivy " tech.sparse:toml-scala_2.13:0.2.2 "
213
214
val toolkitVersion = " 0.4.0"
214
215
val toolkitVersionForNative04 = " 0.3.0"
215
216
val toolkitVersionForNative05 = toolkitVersion
You can’t perform that action at this time.
0 commit comments