Skip to content

Commit 26ee2d4

Browse files
committed
fix: Fixes tar extraction on install to no longer strip path info
1 parent 067d5bb commit 26ee2d4

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ tmp
55
.build
66
.out
77
.tsimp
8+
.taskless
89
coverage
910

1011
# Standard node affairs

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @taskless/packcheck
22

3+
## 0.0.20
4+
5+
### Patch Changes
6+
7+
- Fixes tar extraction to remove path stripping
8+
39
## 0.0.19
410

511
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@taskless/pack",
33
"description": "CLI for working with Taskless packs",
4-
"version": "0.0.19",
4+
"version": "0.0.20",
55
"author": "Taskless",
66
"license": "Apache-2.0",
77
"repository": "taskless/pack",

src/commands/install.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ export const install = async (options: InstallOptions) => {
8686
await saveFile(options.url, filePath);
8787
await extract({
8888
file: filePath,
89-
strip: 1,
9089
cwd: downloadDirectory,
9190
});
9291

0 commit comments

Comments
 (0)