Skip to content

Commit

Permalink
test5
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronFeledy committed Dec 10, 2024
1 parent 7099181 commit 699c6bb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions builders/_drupaly.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ const getServices = options => ({
via: options.via,
xdebug: options.xdebug,
webroot: options.webroot,
suffix: 5,
},
database: {
config: getServiceConfig(options, ['database']),
Expand Down
4 changes: 2 additions & 2 deletions examples/drupal11-nginx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ lando exec appserver -- curl -IL appserver_nginx | grep Server | grep nginx
cd nginx
lando mysql -V | grep 8.0

# Should be running sqlite 3.40 by default
# Should be running sqlite 3.45 by default
cd nginx
lando php -r "print_r(SQLite3::version());" | grep versionString | grep 3.40
lando php -r "print_r(SQLite3::version());" | grep versionString | tee >(cat 1>&2) | grep 3.45

# Should not enable xdebug by default
cd nginx
Expand Down
4 changes: 2 additions & 2 deletions examples/drupal11/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ lando exec appserver -- curl -IL localhost | grep Server | grep 2.4
cd drupal11
lando mysql -V | grep 8.0

# Should be running sqlite 3.40 by default
# Should be running sqlite 3.45 by default
cd drupal11
lando php -r "print_r(SQLite3::version());" | grep versionString | grep 3.40
lando php -r "print_r(SQLite3::version());" | grep versionString | tee >(cat 1>&2) | grep 3.45

# Should not enable xdebug by default
cd drupal11
Expand Down

0 comments on commit 699c6bb

Please sign in to comment.