Refactor the determination of the nextcloud path
This commit is contained in:
parent
085bfeffa8
commit
a6e6d77c97
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ class Context {
|
||||||
}
|
}
|
||||||
|
|
||||||
$nextcloudProcess = Get-Process nextcloud;
|
$nextcloudProcess = Get-Process nextcloud;
|
||||||
$nextcloudPath = $nextcloudProcess.Path;
|
$nextcloudPath = [string]$nextcloudProcess[0].Path;
|
||||||
$nextcloudProcess | Stop-Process -Force;
|
$nextcloudProcess | Stop-Process -Force;
|
||||||
|
|
||||||
$accountSectionEntered = $false;
|
$accountSectionEntered = $false;
|
||||||
|
|
Loading…
Reference in a new issue