Skip to content
This repository was archived by the owner on Oct 28, 2024. It is now read-only.

Commit 06d853f

Browse files
committed
fix: . is not required when extracting
1 parent 6c61380 commit 06d853f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vars/unstashV2.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def call(Map params = [:]) {
7373
}
7474

7575
def extract(String filename) {
76-
def command = "tar -xpf ${filename} ."
76+
def command = "tar -xpf ${filename}"
7777
if(isUnix()) {
7878
sh(label: 'Extract', script: command)
7979
} else {

0 commit comments

Comments
 (0)