diff --git a/scripts/Windows/Scripts/Context.ps1 b/scripts/Windows/Scripts/Context.ps1 index 028a199c..00fc126b 100644 --- a/scripts/Windows/Scripts/Context.ps1 +++ b/scripts/Windows/Scripts/Context.ps1 @@ -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; }