Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
SpencerKwok committed Jul 16, 2024
1 parent 1047eeb commit 9d0c652
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
import org.gradle.api.tasks.PathSensitivity;
import org.gradle.api.tasks.SkipWhenEmpty;
import org.gradle.api.tasks.TaskAction;
import org.gradle.process.ExecResult;

import static com.linkedin.pegasus.gradle.SharedFileUtils.*;

Expand Down Expand Up @@ -154,7 +155,7 @@ public void validateExtensionSchema() throws IOException

ByteArrayOutputStream validationOutput = new ByteArrayOutputStream();

getProject().javaexec(javaExecSpec -> {
ExecResult result = getProject().javaexec(javaExecSpec -> {
String resolverPathArg = resolverPathStr;
if (isEnableArgFile())
{
Expand Down

0 comments on commit 9d0c652

Please sign in to comment.