Skip to content

Commit

Permalink
Resolves #153: Remove self update command
Browse files Browse the repository at this point in the history
  • Loading branch information
steverobbins committed Feb 12, 2019
1 parent 080de7b commit 5751592
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 216 deletions.
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,6 @@ Get the version of a Magento installation

Show all modules that we tried to detect, not just those that were found

### `self-update`

$ magescan.phar self-update

Updates the phar file to the latest version.

# Disclaimer

Since we can't see the code base, this tool makes assumptions and takes guesses. Information reported isn't guaranteed to be correct.
Expand Down
25 changes: 0 additions & 25 deletions build/make-phar.sh

This file was deleted.

182 changes: 0 additions & 182 deletions src/MageScan/Command/SelfUpdateCommand.php

This file was deleted.

4 changes: 1 addition & 3 deletions src/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@
use MageScan\Command\Scan\SitemapCommand;
use MageScan\Command\Scan\VersionCommand;
use MageScan\Command\Scan\UnreachableCommand;
use MageScan\Command\SelfUpdateCommand;
use Symfony\Component\Console\Application;

$app = new Application('Mage Scan', '1.12.8');
$app = new Application('Mage Scan', '1.12.9');

$app->add(new AllCommand);
$app->add(new VersionCommand);
Expand All @@ -35,6 +34,5 @@
$app->add(new SitemapCommand);
$app->add(new ServerCommand);
$app->add(new UnreachableCommand);
$app->add(new SelfUpdateCommand);

$app->run();

0 comments on commit 5751592

Please sign in to comment.