File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ export async function copyStream(
110110 * @param archivePath
111111 * @param destinationPath
112112 */
113- export async function unzipToDirectory (
113+ export async function unzipToDirectorySequentially (
114114 archivePath : string ,
115115 destinationPath : string ,
116116) : Promise < void > {
Original file line number Diff line number Diff line change 44 getRequiredAssetName ,
55 codeQlLauncherName ,
66} from "../../src/common/distribution" ;
7- import { unzipToDirectory } from "../../src/common/unzip" ;
7+ import { unzipToDirectorySequentially } from "../../src/common/unzip" ;
88import fetch from "node-fetch" ;
99import supportedCliVersions from "../../supported_cli_versions.json" ;
1010
@@ -126,7 +126,7 @@ export async function ensureCli(useCli: boolean) {
126126
127127 console . log ( `Unzipping into '${ unzipDir } '` ) ;
128128 mkdirpSync ( unzipDir ) ;
129- await unzipToDirectory ( downloadedFilePath , unzipDir ) ;
129+ await unzipToDirectorySequentially ( downloadedFilePath , unzipDir ) ;
130130 console . log ( "Done." ) ;
131131 } catch ( e ) {
132132 console . error ( "Failed to download CLI." ) ;
You can’t perform that action at this time.
0 commit comments