Fix syntax error
This commit is contained in:
parent
b37430fa2b
commit
0a7851fabe
1 changed files with 7 additions and 6 deletions
|
@ -244,12 +244,13 @@ class Context {
|
||||||
$configName += "WithPlaceholders";
|
$configName += "WithPlaceholders";
|
||||||
}
|
}
|
||||||
|
|
||||||
Add-Content -Path $($this.GetNextcloudConfigFile()) `
|
Add-Content $($this.GetNextcloudConfigFile()) `
|
||||||
-Value [string]::Join(
|
-Value (
|
||||||
"`n",
|
[string]::Join(
|
||||||
@(
|
"`n",
|
||||||
"0\$configName\$folderID\localPath=$localPath",
|
@(
|
||||||
"0\$configName\$folderID\targetPath=$targetPath"));
|
"0\$configName\$folderID\localPath=$localPath",
|
||||||
|
"0\$configName\$folderID\targetPath=$targetPath")));
|
||||||
|
|
||||||
Start-Process $nextcloudPath;
|
Start-Process $nextcloudPath;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue