We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b22197 commit 995074dCopy full SHA for 995074d
packages/vscode/src/fill/zip.ts
@@ -58,7 +58,7 @@ export function zip(tarPath: string, files: IFile[]): Promise<string> {
58
});
59
}
60
61
-export async function extract(tarPath: string, targetPath: string, options: IExtractOptions = {}, logService: ILogService, token: CancellationToken): Promise<void> {
+export async function extract(tarPath: string, targetPath: string, options: IExtractOptions = {}, token: CancellationToken): Promise<void> {
62
const sourcePathRegex = new RegExp(options.sourcePath ? `^${options.sourcePath}` : '');
63
64
return new Promise<void>(async (c, e) => {
0 commit comments