We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e7693b commit 3cdb495Copy full SHA for 3cdb495
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