Skip to content

Commit fe2e87f

Browse files
Fix dotr/dotc scripts
1 parent da7d723 commit fe2e87f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.drone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pipeline:
3333

3434
matrix:
3535
TEST:
36-
- test
36+
- ;test;dotty-bin-tests/test
3737
- ;publishLocal;dotty-bootstrapped/test
3838
- partest-only-no-bootstrap --show-diff --verbose
3939
- 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)