Skip to content

Commit 995074d

Browse files
committed
Update zip extract arguments
1 parent 6b22197 commit 995074d

File tree

1 file changed

+1
-1
lines changed
  • packages/vscode/src/fill

1 file changed

+1
-1
lines changed

packages/vscode/src/fill/zip.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export function zip(tarPath: string, files: IFile[]): Promise<string> {
5858
});
5959
}
6060

61-
export async function extract(tarPath: string, targetPath: string, options: IExtractOptions = {}, logService: ILogService, token: CancellationToken): Promise<void> {
61+
export async function extract(tarPath: string, targetPath: string, options: IExtractOptions = {}, token: CancellationToken): Promise<void> {
6262
const sourcePathRegex = new RegExp(options.sourcePath ? `^${options.sourcePath}` : '');
6363

6464
return new Promise<void>(async (c, e) => {

0 commit comments

Comments
 (0)