Skip to content

Commit

Permalink
actually start
Browse files Browse the repository at this point in the history
Signed-off-by: Jade Turner <spacey-sooty@proton.me>
  • Loading branch information
spacey-sooty committed Nov 1, 2024
1 parent 22bb99a commit 43c560a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/edu/wpi/first/nativeutils/WPINativeUtils.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package edu.wpi.first.nativeutils;

import java.io.IOException;

import org.gradle.api.Plugin;
import org.gradle.api.Project;
import org.gradle.api.tasks.options.Option;
Expand Down Expand Up @@ -41,6 +43,12 @@ public void apply(Project project) {
+ "--version -s %s %s", developerID, path);
builder.command("sh", "-c", codesigncommand);
builder.directory(project.getRootDir());

try {
builder.start();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
});
}
Expand Down

0 comments on commit 43c560a

Please sign in to comment.