Run amanita to pull in changes to templated files

This commit is contained in:
Keegan Rankin 2023-12-05 14:16:31 -08:00
parent 61c93d04db
commit 43ec0040b4
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"template": "git@gitlab.com:agaric/python/amanita.git", "template": "git@gitlab.com:agaric/python/amanita.git",
"commit": "8244742e86da5516002efbe79542c87b7576ea9b", "commit": "cda28017bb88549bd91a5f372a8a30af818a66c9",
"skip": [ "skip": [
".gitlab-ci.yml", ".gitlab-ci.yml",
"drush/sites/self.site.yml" "drush/sites/self.site.yml"

View file

@ -57,7 +57,7 @@ _config_dir="config" # Folder under deploy root with config
_remote_drush="${DEPLOY_ROOT:-}/vendor/bin/drush" # Full remote path to drush used by ssh _remote_drush="${DEPLOY_ROOT:-}/vendor/bin/drush" # Full remote path to drush used by ssh
_update_script="scripts/update.sh" _update_script="scripts/update.sh"
_web_dir="web" # Under deploy root, the Drupal public web directory _web_dir="web" # Under deploy root, the Drupal public web directory
_web_excludes="--exclude .well-known --exclude sites/default/files --exclude sites/default/settings.*.php" _web_excludes='--exclude "/.well-known" --exclude "/sites/default/files" --exclude "/sites/default/settings.*.php'
# Note: `_php_settings_dir` cannot be included here; Default directly in optionals block # Note: `_php_settings_dir` cannot be included here; Default directly in optionals block
####################################### #######################################