We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63cabb0 commit a5ad74bCopy full SHA for a5ad74b
module/DeployAgent/src/Resource/Archive/Extractor/TarGzExtractor.php
@@ -37,6 +37,10 @@ public function extract(\SplFileInfo $archive, \SplFileInfo $destination)
37
unlink(str_replace('.tar.gz', '.tar', $archive->getPathname()));
38
} else {
39
exec('tar xzf ' . $archive->getPathname() . ' -C ' . $destination->getPathname());
40
+
41
+ var_dump('tar xzf ' . $archive->getPathname() . ' -C ' . $destination->getPathname());
42
+ var_dump(glob($destination->getPathname() . '/*'));
43
44
unlink($archive->getPathname());
45
}
46
0 commit comments