1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-30 05:59:39 +02:00

Fix project name determination

This commit is contained in:
Sven Merk 2019-03-25 08:51:23 +01:00
parent 50cc1cb32d
commit db8c86e9de

View File

@ -401,7 +401,7 @@ private resolveProjectIdentifiers(script, descriptorUtils, config) {
break
case 'golang':
gav = descriptorUtils.getGoGAV(config.buildDescriptorFile)
if (gav.artifact == '.') {
if (!gav.artifact) {
gav.group = script.commonPipelineEnvironment.getGithubOrg()
gav.artifact = script.commonPipelineEnvironment.getGithubRepo()
}