Skip to content
New issue

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

Closes #185 & Closes #181 Update example Quicksilver scripts in light of new commands/options. #186

Merged
merged 5 commits into from
Sep 8, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions web/private/scripts/drush_config_distro_update.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

// Ensure update mode is 'merge' and run config-distro-update.
echo "Running Config Distro update...\n";
passthru('drush -n -y state:set config_sync.update_mode 1 --input-format=integer');
passthru('drush -n -y config-distro-update');
passthru('drush -n -y config-distro-update --update-mode=1');
echo "Config Distro update complete.\n";

echo "Syncing permissions...\n";
passthru('drush -n -y az-core-config-add-permissions');
echo "Config Distro update complete.\n";
trackleft marked this conversation as resolved.
Show resolved Hide resolved

// Rebuild the cache.
Expand Down
Loading