Browse Source

Merge remote-tracking branch 'javihgil/master'

Jordi Boggiano 9 years ago
parent
commit
9b61b808ec
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/Composer/Command/ArchiveCommand.php

+ 2 - 1
src/Composer/Command/ArchiveCommand.php

@@ -105,7 +105,8 @@ EOT
         }
 
         $io->writeError('<info>Creating the archive into "'.$dest.'".</info>');
-        $archiveManager->archive($package, $format, $dest);
+        $packagePath = $archiveManager->archive($package, $format, $dest);
+        $io->writeError('Created archive file path: "'.$packagePath.'"');
 
         return 0;
     }