Skip to content

Commit 06168d5

Browse files
committed
fix scalafix installation
1 parent d6c84cf commit 06168d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ lazy val root = Project("lila", file("."))
1616

1717
scalaVersion := globalScalaVersion
1818
resolvers ++= Dependencies.Resolvers.commons
19-
scalacOptions := compilerOptions
19+
scalacOptions ++= compilerOptions
2020
incOptions := incOptions.value.withNameHashing(true)
2121
updateOptions := updateOptions.value.withCachedResolution(true)
2222
sources in doc in Compile := List()

project/BuildSettings.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ object BuildSettings {
4343
.dependsOn(deps: _*)
4444
.settings(
4545
version := "2.0",
46-
libraryDependencies := defaultDeps,
46+
libraryDependencies ++= defaultDeps,
4747
buildSettings,
4848
srcMain
4949
)

0 commit comments

Comments
 (0)