Browse Source

fix typo in MainForm.cs

entryOuputPath -> entryOutputPath
pull/4149/head
Ikko Eltociear Ashimine 1 year ago committed by GitHub
parent
commit
047d08470f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      v2rayN/v2rayUpgrade/MainForm.cs

6
v2rayN/v2rayUpgrade/MainForm.cs

@ -92,9 +92,9 @@ namespace v2rayUpgrade
File.Move(Application.ExecutablePath, thisAppOldFile);
}
string entryOuputPath = GetPath(fullName);
Directory.CreateDirectory(Path.GetDirectoryName(entryOuputPath)!);
entry.ExtractToFile(entryOuputPath, true);
string entryOutputPath = GetPath(fullName);
Directory.CreateDirectory(Path.GetDirectoryName(entryOutputPath)!);
entry.ExtractToFile(entryOutputPath, true);
}
catch (Exception ex)
{

Loading…
Cancel
Save