Skip to content

Commit e49dba2

Browse files
amueggeAdam Muegge
andauthored
(issue #69 fix) removing 'z' flag for tar invocation (z flag forces .gz and overrides file type detection) (#74)
Co-authored-by: Adam Muegge <[email protected]>
1 parent 5c8a3d1 commit e49dba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ export async function extractTar(file: string, destination?: string): Promise<st
449449
let dest = _createExtractFolder(destination);
450450

451451
let tr: trm.ToolRunner = tl.tool('tar');
452-
tr.arg(['xzC', dest, '-f', file]);
452+
tr.arg(['xC', dest, '-f', file]);
453453

454454
await tr.exec();
455455
return dest;

0 commit comments

Comments
 (0)