Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sbt-conscript/src/main/scala/ConscriptPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ object ConscriptPlugin extends AutoPlugin {
}

import autoImport._
override def projectSettings: Seq[Def.Setting[_]] =
override def projectSettings: Seq[Def.Setting[?]] =
List(
csSbtLauncherVersion := ConscriptBuildInfo.sbtLauncherVersion,
libraryDependencies += "org.scala-sbt" % "launcher-interface" % csSbtLauncherVersion.value % "provided",
Expand All @@ -26,7 +26,7 @@ object ConscriptPlugin extends AutoPlugin {
(csRun / aggregate) := false
)

private def configs(path: File) = (path ** "launchconfig").get
private def configs(path: File) = (path ** "launchconfig").get()
private def configName(path: File) = file(path.getParent).getName
lazy val csWriteTask = Def.task {
val base = (csRun / sourceDirectory).value
Expand Down
Loading