Skip to content

Commit

Permalink
Fixed Issue with Extraction Method
Browse files Browse the repository at this point in the history
  • Loading branch information
HerpDerpinstine committed Mar 11, 2021
1 parent 8c94d34 commit 5373577
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,10 @@ private static bool ExtractDependencies(UnityVersion version)
if (version.Version.StartsWith("3."))
folder_path = "Data/PlaybackEngines/windows64standaloneplayer/Managed/";
else if (version.Version.StartsWith("4."))
folder_path = "Data/PlaybackEngines/windowsstandalonesupport/Managed/";
{
//folder_path = "Data/PlaybackEngines/windowsstandalonesupport/Managed/";
folder_path = "Data/PlaybackEngines/windows64standaloneplayer/Managed/";
}

ProcessStartInfo p = new ProcessStartInfo();
p.FileName = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "7z/7z.exe");
Expand Down

0 comments on commit 5373577

Please sign in to comment.