From a051432b33c0a7da57feb11f558b3436fd3d50a3 Mon Sep 17 00:00:00 2001 From: "leedongmyung[desktop]" Date: Sun, 29 Oct 2023 12:33:52 +0900 Subject: [PATCH] =?UTF-8?q?=EB=94=94=EB=B2=84=EA=B9=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/cli/commands/command_const.dart | 4 ++-- lib/cli/commands/command_install.dart | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/cli/commands/command_const.dart b/lib/cli/commands/command_const.dart index ad74bfc..281358e 100644 --- a/lib/cli/commands/command_const.dart +++ b/lib/cli/commands/command_const.dart @@ -59,12 +59,12 @@ class _CommandConstantWindows extends _CommandConstantBase { @override String get installPath { var userPath = Platform.environment['UserProfile']; - return '$userPath$windowRoamingPath${CLI.serviceName}'; + return '$userPath$windowRoamingPath${CLI.serviceName}\\'; } @override String get installFilePath { - return '$installPath\\${CLI.serviceName}.exe'; + return '$installPath${CLI.serviceName}.exe'; ; } } diff --git a/lib/cli/commands/command_install.dart b/lib/cli/commands/command_install.dart index 4d9687a..1864ab0 100644 --- a/lib/cli/commands/command_install.dart +++ b/lib/cli/commands/command_install.dart @@ -62,7 +62,7 @@ class CommandUninstall extends CommandBase { //To-do: Proccess kill //Regist path - RegistPath.OS?.add(installPath); + RegistPath.OS?.remove(installPath); //Remove Installed file var installDir = Directory(installPath);