Skip to content

Commit 5800ac5

Browse files
committed
actually we do need the newline
1 parent 27a5a68 commit 5800ac5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/shared/lsp/utils/platform.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export async function getVSCodeSettings(): Promise<{ proxyUrl?: string; certific
120120
}
121121

122122
const certPath = join(tempDir, 'vscode-ca-certs.pem')
123-
const certContent = allCerts.join('')
123+
const certContent = allCerts.join('\n')
124124

125125
nodefs.writeFileSync(certPath, certContent)
126126
result.certificatePath = certPath

0 commit comments

Comments
 (0)