Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

Commit

Permalink
Remove CHANGELOG.md, CONDUCT.md and CONTRIBUTING.md after setup
Browse files Browse the repository at this point in the history
  • Loading branch information
geerteltink committed Nov 20, 2016
1 parent 5ba8a24 commit 2daffce
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/ExpressiveInstaller/OptionalPackages.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,12 @@ public static function removeInstallerFromDefinition()
*/
private static function cleanUp(IOInterface $io, $projectRoot)
{
$io->write("<info>Removing Expressive installer classes, configuration, and tests</info>");
$io->write("<info>Removing Expressive installer classes, configuration, tests and docs</info>");
unlink($projectRoot . '/.coveralls.yml');
unlink($projectRoot . '/.travis.yml');
unlink($projectRoot . '/CHANGELOG.md');
unlink($projectRoot . '/CONDUCT.md');
unlink($projectRoot . '/CONTRIBUTING.md');
self::recursiveRmdir(__DIR__);
self::recursiveRmdir($projectRoot . '/test/ExpressiveInstallerTest');

Expand Down

0 comments on commit 2daffce

Please sign in to comment.