diff --git a/src/Commands/Eve/Update/Sde.php b/src/Commands/Eve/Update/Sde.php index 363a64033..df5041a00 100644 --- a/src/Commands/Eve/Update/Sde.php +++ b/src/Commands/Eve/Update/Sde.php @@ -48,7 +48,8 @@ class Sde extends Command */ protected $signature = 'eve:update:sde {--local : Check the local config file for the version string} - {--force : Force re-installation of an existing SDE version}'; + {--force : Force re-installation of an existing SDE version} + {--json=https://raw.githubusercontent.com/eveseat/resources/master/sde.json : Specify the metadata to update the SDE}'; /** * The console command description. @@ -235,7 +236,7 @@ public function getJsonResource() { $result = $this->getGuzzle()->request('GET', - 'https://raw.githubusercontent.com/eveseat/resources/master/sde.json', [ + $this->option('json'), [ 'headers' => ['Accept' => 'application/json'], ]);