Skip to content

Commit

Permalink
fix agent path
Browse files Browse the repository at this point in the history
  • Loading branch information
yawkat committed Nov 26, 2024
1 parent f64da17 commit 87ee457
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void apply(Project project) {
task.setDescription("Prepare run scripts of the different fuzz targets for ClusterFuzz (OSS-Fuzz) execution");

task.getClasspath().setFrom(jazzerClasspath);
task.getAgent().set(new File("/usr/local/lib/jazzer_agent_deploy.jar"));
task.getAgent().set(new File("/usr/local/bin/jazzer_agent_deploy.jar"));
String out = System.getenv("OUT");
if (out != null) {
//throw new IllegalStateException("No OUT environment variable found. This task should run on OSS-Fuzz only!");
Expand Down

0 comments on commit 87ee457

Please sign in to comment.