Skip to content

Commit f3c8c2c

Browse files
committed
fix: cp from pod was broken
1 parent d387d37 commit f3c8c2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class Cp {
3030
): Promise<void> {
3131
const tmpFile = tmp.fileSync();
3232
const tmpFileName = tmpFile.name;
33-
const command = ['tar', 'zcf', '-'];
33+
const command = ['tar', 'cf', '-'];
3434
if (cwd) {
3535
command.push('-C', cwd);
3636
}

0 commit comments

Comments
 (0)