Skip to content
Snippets Groups Projects
Commit 2a12be06 authored by david_williams's avatar david_williams
Browse files

fix for "skipusers" hard coding

parent 4ef2b46a
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
<email <email
mailhost="localhost" mailhost="localhost"
returnaddress="${env.BUILD_BUILDMASTER_EMAIL}" returnaddress="${env.BUILD_BUILDMASTER_EMAIL}"
skipusers="false" skipusers="${env.SKIPUSERS}"
subjectprefix="[${project.name}]" subjectprefix="[${project.name}]"
spamwhilebroken="false" spamwhilebroken="false"
buildresultsurl="${env.BUILD_RESULT_URL}/${project.name}"> buildresultsurl="${env.BUILD_RESULT_URL}/${project.name}">
......
...@@ -30,3 +30,6 @@ export BUILD_BUILDMASTER_EMAIL=wtpBuild@eclipse.org ...@@ -30,3 +30,6 @@ export BUILD_BUILDMASTER_EMAIL=wtpBuild@eclipse.org
export BUILD_RESULT_URL=http://build.eclipse.org:7777/cruisecontrol/buildresults export BUILD_RESULT_URL=http://build.eclipse.org:7777/cruisecontrol/buildresults
export BUILD_TOADDRESS=david_williams@us.ibm.com export BUILD_TOADDRESS=david_williams@us.ibm.com
# for builds on local machines, SKIPUSERS should be 'true' to avoid
# notifying users about those builds on your local machine
export SKIPUSERS=false
\ No newline at end of file
...@@ -34,3 +34,6 @@ export BUILD_BUILDMASTER_EMAIL=davidw@davidw.com ...@@ -34,3 +34,6 @@ export BUILD_BUILDMASTER_EMAIL=davidw@davidw.com
export BUILD_RESULT_URL=http://davidw.com:7777/cruisecontrol/buildresults export BUILD_RESULT_URL=http://davidw.com:7777/cruisecontrol/buildresults
export BUILD_TOADDRESS=david_williams@us.ibm.com export BUILD_TOADDRESS=david_williams@us.ibm.com
# for builds on local machines, SKIPUSERS should be 'true' to avoid
# notifying users about those builds on your local machine
export SKIPUSERS=true
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment