Skip to content

Commit c176101

Browse files
committed
Update since and until correctly
1 parent 6f7b93b commit c176101

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,23 @@ subprojects {
6565
version ideaVersion
6666
downloadSources !Boolean.valueOf(System.getenv('CI'))
6767
sameSinceUntilBuild Boolean.valueOf(isEAP)
68+
updateSinceUntilBuild true
6869
}
6970

7071
publishPlugin {
7172
username System.getenv('IJ_REPO_USERNAME')
7273
password System.getenv('IJ_REPO_PASSWORD')
7374
}
7475

76+
patchPluginXml {
77+
if (customSinceBuild) {
78+
sinceBuild customSinceBuild
79+
}
80+
if (customUntilBuild) {
81+
untilBuild customUntilBuild
82+
}
83+
}
84+
7585
grammarKit {
7686
grammarKitRelease = "2017.1.4"
7787
jflexRelease = jFlexRelease

0 commit comments

Comments
 (0)