The correct path should be "<repo>-settings", but was previously set
to just "<repo>". This is causing problems in our JCASC and other
automation.
Issue: RELENG-4490
Change-Id: I7f526d82d550acc3021548ee642a0d3706783d9f
Signed-off-by: Eric Ball <eball@linuxfoundation.org>
)
log.debug("config-params.yaml contents:\n{}".format(server_creds_content))
- config_path = "jenkins-config/managed-config-files/mavenSettings/{}".format(project_dashed)
+ config_path = "jenkins-config/managed-config-files/mavenSettings/{}-settings".format(project_dashed)
try:
os.makedirs(config_path)
except FileExistsError:
--- /dev/null
+---
+fixes:
+ - |
+ Correct path for Jenkins settings files.
+
+ The correct path should be "<repo>-settings", but was previously set
+ to just "<repo>". This was causing problems in our JCASC and other
+ automation.