[myRobot] Skip deploying debug libraries for myRobot deploys (#3950)

This commit is contained in:
Thad House
2022-01-21 15:45:47 -08:00
committed by GitHub
parent 76c78e295b
commit 559db11a20

View File

@@ -86,6 +86,9 @@ deploy {
myRobotCpp(NativeExecutableArtifact) {
libraryDirectory = '/usr/local/frc/third-party/lib'
def excludes = getLibraryFilter().getExcludes()
excludes.add('**/*.so.debug')
excludes.add('**/*.so.*.debug')
postdeploy << { ctx ->
ctx.execute('chmod +x myRobotCpp')
}