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";
|
||||
}
|
||||
|
||||
Add-Content -Path $($this.GetNextcloudConfigFile()) `
|
||||
-Value [string]::Join(
|
||||
"`n",
|
||||
@(
|
||||
"0\$configName\$folderID\localPath=$localPath",
|
||||
"0\$configName\$folderID\targetPath=$targetPath"));
|
||||
Add-Content $($this.GetNextcloudConfigFile()) `
|
||||
-Value (
|
||||
[string]::Join(
|
||||
"`n",
|
||||
@(
|
||||
"0\$configName\$folderID\localPath=$localPath",
|
||||
"0\$configName\$folderID\targetPath=$targetPath")));
|
||||
|
||||
Start-Process $nextcloudPath;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue