From 7e29cc649f3ba2fafb360ff14e929eb2062f26ad Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Sat, 24 May 2025 12:53:38 +0900 Subject: [PATCH] Fix mistypo --- WelsonJS.Toolkit/WelsonJS.Launcher/MainForm.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/MainForm.cs b/WelsonJS.Toolkit/WelsonJS.Launcher/MainForm.cs index 637d331..fa82bc3 100644 --- a/WelsonJS.Toolkit/WelsonJS.Launcher/MainForm.cs +++ b/WelsonJS.Toolkit/WelsonJS.Launcher/MainForm.cs @@ -124,7 +124,7 @@ namespace WelsonJS.Launcher try { - // try to validate GUID + // check if the working directory exists if (Directory.Exists(workingDirectory)) { throw new InvalidOperationException("GUID validation failed. Directory already exists."); @@ -139,7 +139,7 @@ namespace WelsonJS.Launcher // follow the sub-directory workingDirectory = Program.GetWorkingDirectory(instanceId, true); - // Run the appliction + // Run the application Program.RunCommandPrompt(workingDirectory, entryFileName, scriptName, cbUseSpecificScript.Checked, cbInteractiveServiceApp.Checked); } catch (Exception ex)