Skip to content

Commit 3cdb495

Browse files
committed
Update zip extract arguments
1 parent 5e7693b commit 3cdb495

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)