Skip to content

Commit

Permalink
Remove extra prints (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThadHouse authored Nov 12, 2024
1 parent 74a23c8 commit 50ad3ea
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group 'edu.wpi.first'
version '2.0.1'
version '2.0.2'

if (project.hasProperty('publishVersion')) {
version = project.publishVersion
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/edu/wpi/first/tools/FixupNativeResources.java
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,7 @@ public void execute(CopySpec copySpec) {
for (String fixupFile : filesToFixup) {
String outputName = fixupFile;
// Handle the special case of opencv libraries already containing rpath
System.out.println(outputName);
if (outputName.startsWith("@rpath/")) {
System.out.println("Replaciong");
outputName = outputName.substring("@rpath/".length());
}
String outputNameFinal = outputName;
Expand Down

0 comments on commit 50ad3ea

Please sign in to comment.