Fixes publishing basenames for examples to make combiner script work. (#712)

This commit is contained in:
Thad House
2017-11-07 14:54:17 -08:00
committed by Peter Johnson
parent 0d54772362
commit b9aabc71b0
2 changed files with 4 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ def outputsFolder = file("$project.buildDir/outputs")
task cppExamplesZip(type: Zip) {
destinationDir = outputsFolder
baseName = 'examples'
baseName = 'wpilibc-examples'
from(licenseFile) {
into '/'
@@ -39,7 +39,7 @@ task cppExamplesZip(type: Zip) {
task cppTemplatesZip(type: Zip) {
destinationDir = outputsFolder
baseName = 'templates'
baseName = 'wpilibc-templates'
from(licenseFile) {
into '/'

View File

@@ -22,7 +22,7 @@ def outputsFolder = file("$project.buildDir/outputs")
task javaExamplesZip(type: Zip) {
destinationDir = outputsFolder
baseName = 'examples'
baseName = 'wpilibj-examples'
from(licenseFile) {
into '/'
@@ -39,7 +39,7 @@ task javaExamplesZip(type: Zip) {
task javaTemplatesZip(type: Zip) {
destinationDir = outputsFolder
baseName = 'templates'
baseName = 'wpilibj-templates'
from(licenseFile) {
into '/'