Skip to content

Commit 7398175

Browse files
committed
Change back to env as easier to pick up val.
1 parent 5e5a316 commit 7398175

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStackIDEA/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88

99
}
1010
Properties properties = System.properties;
11-
if(System.env.BUILD_NUMBER != null && properties.getProperty("servicestackidea.publish_nightly", null) != null) {
11+
if(System.env.BUILD_NUMBER != null && System.env.SERVICESTACKIDEA_PUBLISH_NIGHTLY != null) {
1212
// Append build number to version for a new nightly build version to be published.
1313
version = "${version}.$System.env.BUILD_NUMBER"
1414
}

0 commit comments

Comments
 (0)