X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Fpharext%2FPackager.php;h=f5ccfb80848667d63c38e98a323f94a28dfe5d48;hb=337e76964be2ed6724633ac477affc3a28426c97;hp=9acb5ebc848a229c62a7d0e7c74eec63bcbf13cc;hpb=23b4f263e68ae8d0a34292ed6215350483fe8451;p=pharext%2Fpharext diff --git a/src/pharext/Packager.php b/src/pharext/Packager.php index 9acb5eb..f5ccfb8 100644 --- a/src/pharext/Packager.php +++ b/src/pharext/Packager.php @@ -141,8 +141,6 @@ class Packager implements Command * @return string local source */ private function download($source) { - $this->info("Fetching remote source %s ...\n", $source); - if ($this->args->git) { $task = new Task\GitClone($source); } else { @@ -167,8 +165,6 @@ class Packager implements Command * @return string extracted directory */ private function extract($source) { - $this->debug("Extracting %s ...\n", $source); - $task = new Task\Extract($source); $dest = $task->run($this->verbosity()); @@ -192,7 +188,6 @@ class Packager implements Command $this->cleanup[] = new Task\Cleanup($source); if ($this->args->pecl) { - $this->debug("Sanitizing PECL dir ...\n"); $source = (new Task\PeclFixup($source))->run($this->verbosity()); } }