디버깅

This commit is contained in:
leedongmyung[desktop] 2023-10-29 12:33:52 +09:00
parent b5ec1ce297
commit a051432b33
2 changed files with 3 additions and 3 deletions

View file

@ -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';
;
}
}

View file

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