mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-01 02:41:48 +00:00
Don't check for existence in distributing .debug files.
This check is unnecessary and is run during task creation, so prevents the .debug file from being included the first time gradle is run.
This commit is contained in:
@@ -145,11 +145,8 @@ def cameraserverZipTask = { project ->
|
||||
from(binary.sharedLibraryFile) {
|
||||
into getPlatformPath(binary)
|
||||
}
|
||||
def debugFile = new File(binary.sharedLibraryFile.absolutePath + ".debug")
|
||||
if (debugFile.exists()) {
|
||||
from(debugFile) {
|
||||
into getPlatformPath(binary)
|
||||
}
|
||||
from (new File(binary.sharedLibraryFile.absolutePath + ".debug")) {
|
||||
into getPlatformPath(binary)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user