From 047d08470fe10315b573e54d27fc1444b85b4124 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Wed, 2 Aug 2023 00:33:10 +0900 Subject: [PATCH] fix typo in MainForm.cs entryOuputPath -> entryOutputPath --- v2rayN/v2rayUpgrade/MainForm.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/v2rayN/v2rayUpgrade/MainForm.cs b/v2rayN/v2rayUpgrade/MainForm.cs index 4edb657e..02f0e933 100644 --- a/v2rayN/v2rayUpgrade/MainForm.cs +++ b/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) { @@ -145,4 +145,4 @@ namespace v2rayUpgrade return Path.Combine(startupPath, fileName); } } -} \ No newline at end of file +}