디버깅
This commit is contained in:
parent
b5ec1ce297
commit
a051432b33
2 changed files with 3 additions and 3 deletions
|
|
@ -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';
|
||||
;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue