Skip to content

Commit 3cfe53d

Browse files
committed
debug
1 parent 45ae1fd commit 3cfe53d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

module/DeployAgent/src/Resource/Archive/Extractor/TarGzExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function extract(\SplFileInfo $archive, \SplFileInfo $destination)
3737
unlink(str_replace('.tar.gz', '.tar', $archive->getPathname()));
3838
} else {
3939
exec('tar xzf ' . $archive->getPathname() . ' -C ' . $destination->getPathname());
40-
unlink($archive->getPathname());
40+
//unlink($archive->getPathname());
4141
}
4242

4343
return true;

0 commit comments

Comments
 (0)