From c225aeffed9e49fd2cf3f17e042ec47525e4d2c8 Mon Sep 17 00:00:00 2001 From: DubbleClick Date: Tue, 17 Oct 2023 00:55:25 +0200 Subject: [PATCH] introduce --rebuild option to BuildCliCommand.php (who even uses build:libs?) --- src/SPC/command/BuildCliCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SPC/command/BuildCliCommand.php b/src/SPC/command/BuildCliCommand.php index db08187f..42a3b5af 100644 --- a/src/SPC/command/BuildCliCommand.php +++ b/src/SPC/command/BuildCliCommand.php @@ -23,6 +23,7 @@ class BuildCliCommand extends BuildCommand { $this->addArgument('extensions', InputArgument::REQUIRED, 'The extensions will be compiled, comma separated'); $this->addOption('with-libs', null, InputOption::VALUE_REQUIRED, 'add additional libraries, comma separated', ''); + $this->addOption('rebuild', 'r', null, 'Delete old build and rebuild'); $this->addOption('build-micro', null, null, 'build micro'); $this->addOption('build-cli', null, null, 'build cli'); $this->addOption('build-fpm', null, null, 'build fpm');