Skip to content

Commit 22022a2

Browse files
Fix dotr/dotc scripts
1 parent da7d723 commit 22022a2

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.drone.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ pipeline:
3434
matrix:
3535
TEST:
3636
- test
37+
- dotty-bin-tests/test
3738
- ;publishLocal;dotty-bootstrapped/test
3839
- partest-only-no-bootstrap --show-diff --verbose
3940
- partest-only --show-diff --verbose

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)