Skip to content

Commit 75f4400

Browse files
authored
Merge pull request #1498 from felixmulder/fix-nightly
Get property from environment instead of from sysprops
2 parents 93810fa + 6b8b134 commit 75f4400

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import org.scalajs.sbtplugin.ScalaJSPlugin.autoImport._
1010
object DottyBuild extends Build {
1111

1212
val baseVersion = "0.1"
13-
val isNightly = sys.props.get("NIGHTLYBUILD") == Some("yes")
13+
val isNightly = sys.env.get("NIGHTLYBUILD") == Some("yes")
1414

1515
val jenkinsMemLimit = List("-Xmx1300m")
1616

0 commit comments

Comments
 (0)