[build] Remove redundant _M_ prefix from artifact file name (#6983)

This commit is contained in:
Gold856
2024-08-27 20:05:29 -04:00
committed by GitHub
parent 0352a60f38
commit 9c35aa6bbf
7 changed files with 7 additions and 7 deletions

View File

@@ -34,7 +34,7 @@ model {
description("Copies the DataLogTool executable to the outputs directory.")
destinationDirectory = outputsFolder
archiveBaseName = '_M_' + zipBaseName
archiveBaseName = zipBaseName
duplicatesStrategy = 'exclude'
archiveClassifier = nativeUtils.getPublishClassifier(binary)

View File

@@ -89,7 +89,7 @@ model {
description("Copies the Glass executable to the outputs directory.")
destinationDirectory = outputsFolder
archiveBaseName = '_M_' + zipBaseName
archiveBaseName = zipBaseName
duplicatesStrategy = 'exclude'
archiveClassifier = nativeUtils.getPublishClassifier(binary)

View File

@@ -34,7 +34,7 @@ model {
description("Copies the OutlineViewer executable to the outputs directory.")
destinationDirectory = outputsFolder
archiveBaseName = '_M_' + zipBaseName
archiveBaseName = zipBaseName
duplicatesStrategy = 'exclude'
archiveClassifier = nativeUtils.getPublishClassifier(binary)

View File

@@ -33,7 +33,7 @@ model {
description("Copies the processstarter executable to the outputs directory.")
destinationDirectory = outputsFolder
archiveBaseName = '_M_' + zipBaseName
archiveBaseName = zipBaseName
duplicatesStrategy = 'exclude'
archiveClassifier = nativeUtils.getPublishClassifier(binary)

View File

@@ -34,7 +34,7 @@ model {
description("Copies the roboRIOTeamNumberSetter executable to the outputs directory.")
destinationDirectory = outputsFolder
archiveBaseName = '_M_' + zipBaseName
archiveBaseName = zipBaseName
duplicatesStrategy = 'exclude'
archiveClassifier = nativeUtils.getPublishClassifier(binary)

View File

@@ -131,7 +131,7 @@ ext.createComponentZipTasks = { components, names, base, type, project, func ->
description = 'Creates component archive for platform ' + key
destinationDirectory = outputsFolder
archiveClassifier = key
archiveBaseName = '_M_' + base
archiveBaseName = base
duplicatesStrategy = 'exclude'
from(licenseFile) {

View File

@@ -77,7 +77,7 @@ model {
description("Copies the SysId executable to the outputs directory.")
destinationDirectory = outputsFolder
archiveBaseName = '_M_' + zipBaseName
archiveBaseName = zipBaseName
duplicatesStrategy = 'exclude'
archiveClassifier = nativeUtils.getPublishClassifier(binary)