Skip to content

Commit 43c560a

Browse files
committed
actually start
Signed-off-by: Jade Turner <[email protected]>
1 parent 22bb99a commit 43c560a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/main/java/edu/wpi/first/nativeutils/WPINativeUtils.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package edu.wpi.first.nativeutils;
22

3+
import java.io.IOException;
4+
35
import org.gradle.api.Plugin;
46
import org.gradle.api.Project;
57
import org.gradle.api.tasks.options.Option;
@@ -41,6 +43,12 @@ public void apply(Project project) {
4143
+ "--version -s %s %s", developerID, path);
4244
builder.command("sh", "-c", codesigncommand);
4345
builder.directory(project.getRootDir());
46+
47+
try {
48+
builder.start();
49+
} catch (IOException e) {
50+
throw new RuntimeException(e);
51+
}
4452
}
4553
});
4654
}

0 commit comments

Comments
 (0)