Skip to content

Commit

Permalink
Fix swerve project build.gradle and pyproject.toml files
Browse files Browse the repository at this point in the history
  • Loading branch information
bhall-ctre authored Jan 18, 2025
1 parent ba0617f commit 21204a6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cpp/SwerveWithPathPlanner/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ deploy {
frcStaticFileDeploy(getArtifactTypeClass('FileTreeArtifact')) {
files = project.fileTree('src/main/deploy')
directory = '/home/lvuser/deploy'
deleteOldFiles = false // Change to true to delete files on roboRIO that no
deleteOldFiles = true // Change to true to delete files on roboRIO that no
// longer exist in deploy directory of this project
}
}
Expand Down
2 changes: 1 addition & 1 deletion java/SwerveWithChoreo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ deploy {
frcStaticFileDeploy(getArtifactTypeClass('FileTreeArtifact')) {
files = project.fileTree('src/main/deploy')
directory = '/home/lvuser/deploy'
deleteOldFiles = false // Change to true to delete files on roboRIO that no
deleteOldFiles = true // Change to true to delete files on roboRIO that no
// longer exist in deploy directory of this project
}
}
Expand Down
2 changes: 1 addition & 1 deletion java/SwerveWithPathPlanner/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ deploy {
frcStaticFileDeploy(getArtifactTypeClass('FileTreeArtifact')) {
files = project.fileTree('src/main/deploy')
directory = '/home/lvuser/deploy'
deleteOldFiles = false // Change to true to delete files on roboRIO that no
deleteOldFiles = true // Change to true to delete files on roboRIO that no
// longer exist in deploy directory of this project
}
}
Expand Down
2 changes: 1 addition & 1 deletion python/SwerveWithPathPlanner/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ robotpy_extras = [
"commands2",
# "cscore",
# "navx",
# "pathplannerlib",
"pathplannerlib",
# "phoenix5",
# "photonvision",
# "playingwithfusion",
Expand Down

0 comments on commit 21204a6

Please sign in to comment.