From fcc9a80d503591d739b3279cfbbdc7eb3f8e5622 Mon Sep 17 00:00:00 2001 From: magdev Date: Wed, 5 Jun 2019 09:43:57 +0200 Subject: [PATCH] set dossier:build as default command --- bin/dossier.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/dossier.php b/bin/dossier.php index 1b0fd01..cbd6e37 100755 --- a/bin/dossier.php +++ b/bin/dossier.php @@ -52,6 +52,8 @@ $app->add(new Command\Config\ConfigUnsetCommand()); $app->add(new Command\Cache\CacheClearCommand()); $app->add(new Command\Server\ServerStartCommand()); $app->add(new Command\Dev\PharExtractCommand()); -$app->run(); + +$app->setDefaultCommand('dossier:build', false) + ->run();