We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f40410 + 4277728 commit 6cd43beCopy full SHA for 6cd43be
setup/src/Magento/Setup/Console/Command/InstallStoreConfigurationCommand.php
@@ -178,6 +178,9 @@ public function validate(InputInterface $input)
178
switch ($key) {
179
case StoreConfigurationDataMapper::KEY_BASE_URL:
180
/** @var Validator $url */
181
+ if (strcmp($value, '{{base_url}}') == 0) {
182
+ break;
183
+ }
184
$url = $this->objectManager->get('Magento\Framework\Url\Validator');
185
if (!$url->isValid($value)) {
186
$errorMsgs = $url->getMessages();
0 commit comments