Skip to content

Commit

Permalink
start working on modularizing jenkinsChangeLog
Browse files Browse the repository at this point in the history
  • Loading branch information
dmodoomsirius committed Oct 27, 2015
1 parent c7d7f56 commit bfb6dff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/forge/jenkinsChangelog.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ task createChangelogJenkins(type: ChangelogTask) {

if (jobName?.trim())
{
jobName = "Mad Science";
jobName = "${jenkinsName}";
}

if (System.getenv("BUILD_NUMBER") != null) {
buildNumber = "${System.getenv("BUILD_NUMBER")}";
setServerRoot(new DelayedString(project, 'http://madsciencemod.com:8080/'));
setServerRoot(new DelayedString(project, '${Jenkinsurl}'));
setJobName(new DelayedString(project, jobName.replaceAll("\\s+","%20").toString()));
setAuthName(new DelayedString(project, 'MadScienceMod'));
setAuthPassword(new DelayedString(project, 'Xp8k8BkF9UjVsR75A58c82RK'));
Expand Down

0 comments on commit bfb6dff

Please sign in to comment.