diff --git a/plugins/workspace-plugin/src/theia-commands.ts b/plugins/workspace-plugin/src/theia-commands.ts index 27aa9e678..8382a822b 100644 --- a/plugins/workspace-plugin/src/theia-commands.ts +++ b/plugins/workspace-plugin/src/theia-commands.ts @@ -204,7 +204,7 @@ export class TheiaImportZipCommand implements TheiaImportCommand { const importZip = async (progress: theia.Progress<{ message?: string; increment?: number }>, token: theia.CancellationToken): Promise => { try { // download - const curlArgs = ['-sL', '--output', this.zipfilePath]; + const curlArgs = ['-sSL', '--output', this.zipfilePath]; if (fs.existsSync(SS_CRT_PATH)) { curlArgs.push('-k'); }