We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As a dev I want to use the -Dsite=blah switch to run commands.
When I run some commands like blt setup -Dsite=foo and blt setup:drupal:install -Dsite=foo I'm seeing --uri=default in the drush commands.
blt setup -Dsite=foo
blt setup:drupal:install -Dsite=foo
--uri=default
Looking here it seems to get the multisite config value, and then ignore it. https://github.com/acquia/blt/blob/8.x/src/Robo/Commands/Setup/BuildCommand.php#L23-L29
The text was updated successfully, but these errors were encountered:
The correct syntax would be
blt setup -Dsite=foo. With Robo, you need a space after the -D.
-D
Sorry, something went wrong.
You'll need to pass drush.uri as well.
I believe this is resolved in 8.x via #1691
Confirmed fixed, thanks
No branches or pull requests
As a dev I want to use the -Dsite=blah switch to run commands.
When I run some commands like
blt setup -Dsite=foo
andblt setup:drupal:install -Dsite=foo
I'm seeing--uri=default
in the drush commands.Looking here it seems to get the multisite config value, and then ignore it.
https://github.com/acquia/blt/blob/8.x/src/Robo/Commands/Setup/BuildCommand.php#L23-L29
The text was updated successfully, but these errors were encountered: