You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes, you like to check where the export directory is with Drush, and maybe you run config:status, but get no help:
$ drush config:status
[notice] No differences between DB and sync directory.
... also not from config:import:
$ drush config:import --diff
[notice] There are no changes to import.
You do get to see the export directory with config:export:
$ drush config:export --diff
[notice] The active configuration is identical to the configuration in the export directory (../assets/config).
../assets/config
Proposed solution
Show the export directory when running config:status and config:export, same as config:import.
Maybe show as Export directory: ../assets/config at the bottom, if possible? And remove the path in the parentheses after the " [notice] The active ..." string.
$ drush config:status --diff
[notice] The active configuration is identical to the configuration in the export directory.
Export directory: ../assets/config
Difference
$ drush config:status
------------- -----------
Name State
------------- -----------
system.site Different
------------- -----------
Export directory: ../assets/config
The text was updated successfully, but these errors were encountered:
Problem
Sometimes, you like to check where the export directory is with Drush, and maybe you run
config:status
, but get no help:... also not from
config:import
:You do get to see the export directory with
config:export
:Proposed solution
config:status
andconfig:export
, same asconfig:import
.Export directory: ../assets/config
at the bottom, if possible? And remove the path in the parentheses after the " [notice] The active ..." string.The text was updated successfully, but these errors were encountered: