Skip to content

Commit

Permalink
MPS build server should run build in non-CI mode (invalid build numbe…
Browse files Browse the repository at this point in the history
…r used).
  • Loading branch information
ashatalin committed Jun 1, 2018
1 parent 9b04385 commit f375570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if (project.hasProperty("forceCI")) {
ext.ciBuild = true
} else {
//on teamcity we are in a CI build
if (project.hasProperty("teamcity") && project.hasProperty('mpsHomeDir')) {
if (project.hasProperty("teamcity") && !project.hasProperty('mpsHomeDir')) {
ext.ciBuild = true
} else {
ext.ciBuild = false
Expand Down

0 comments on commit f375570

Please sign in to comment.