This commit is contained in:
Marcel Pociot
2020-06-16 01:05:19 +02:00
parent c59c279128
commit 76ff60f114
3 changed files with 2 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ use Illuminate\Console\Command;
class PublishCommand extends Command
{
protected $signature = 'publish';
protected $signature = 'publish {--force}';
protected $description = 'Publish the expose configuration file';
@@ -18,7 +18,7 @@ class PublishCommand extends Command
'config.php'
]);
if (file_exists($configFile)) {
if (! $this->option('force') && file_exists($configFile)) {
$this->error('Expose configuration file already exists at '.$configFile);
return;
}