Skip to content

Commit 2c3a8ba

Browse files
committed
Fix typo in directory name for probe-venv.
1 parent 39adaa0 commit 2c3a8ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pygradle-plugin/src/main/groovy/com/linkedin/gradle/python/tasks/action/ProbeVenvInfoAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ private static void doProbe(Project project, PythonDetails pythonDetails,
5858
byte[] buffer = new byte[wheelApiResource.available()];
5959
wheelApiResource.read(buffer);
6060

61-
File probeDir = new File(project.getBuildDir(), "prob-venv");
61+
File probeDir = new File(project.getBuildDir(), "probe-venv");
6262
probeDir.mkdirs();
6363

6464
OutputStream outStream = new FileOutputStream(getPythonFileForSupportedWheels(probeDir));

0 commit comments

Comments
 (0)