Skip to content

Commit 1711ff1

Browse files
committed
fix bin/dotc
1 parent 8bab01e commit 1711ff1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/common

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function getLastStringOnLineWith {
88
}
99

1010
# Configuration
11-
SCALA_VERSION=$(getLastStringOnLineWith "scalaVersion in")
11+
SCALA_VERSION=$(getLastStringOnLineWith "val scalacVersion")
1212
SCALA_BINARY_VERSION=2.11
1313
SCALA_COMPILER_VERSION=$(getLastStringOnLineWith "scala-compiler")
1414
SBT_VERSION=$(grep "sbt.version=" "$DOTTY_ROOT/project/build.properties" | sed 's/sbt.version=//')

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import sbt.Package.ManifestAttributes
1111

1212
object DottyBuild extends Build {
1313

14-
val scalacVersion = "2.11.5"
14+
val scalacVersion = "2.11.5" // Do not rename, this is grepped in bin/common.
1515

1616
val dottyOrganization = "ch.epfl.lamp"
1717
val dottyVersion = {

0 commit comments

Comments
 (0)