Skip to content

Commit 1d36151

Browse files
committed
Fix extraction directory according to suggestion in henon#40
1 parent f6338cf commit 1d36151

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Python.Deployment/Installer.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ await Task.Run(() =>
8888
{
8989
try
9090
{
91-
ZipFile.ExtractToDirectory(zip, zip.Replace(".zip", ""));
91+
//ZipFile.ExtractToDirectory(zip, zip.Replace(".zip", ""));
92+
ZipFile.ExtractToDirectory(zip, PythonDirectoryName);
9293

9394
// allow pip on embedded python installation
9495
// see https://github.com/pypa/pip/issues/4207#issuecomment-281236055

0 commit comments

Comments
 (0)