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);