Skip to content

Commit f468b2f

Browse files
committed
fix: rsync to skip files based on checksum
1 parent 4be44a6 commit f468b2f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

assets/dev-env.lando.template.yml.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ services:
184184
- devtools:/dev-tools
185185
- scripts:/scripts
186186
initOnly: true
187-
entrypoint: sh -c '/usr/bin/rsync -a --delete --chown=${LANDO_HOST_USER_ID}:${LANDO_HOST_GROUP_ID} /wp/ /shared/; /usr/bin/rsync -a --chown=${LANDO_HOST_USER_ID}:${LANDO_HOST_GROUP_ID} --delete /dev-tools-orig/ /dev-tools/'
187+
entrypoint: /bin/sh -c '/usr/bin/rsync -ac --delete --chown=${LANDO_HOST_USER_ID}:${LANDO_HOST_GROUP_ID} /wp/ /shared/; /usr/bin/rsync -ac --chown=${LANDO_HOST_USER_ID}:${LANDO_HOST_GROUP_ID} --delete /dev-tools-orig/ /dev-tools/'
188188
volumes:
189189
devtools:
190190
scripts:
@@ -194,7 +194,7 @@ services:
194194
type: compose
195195
services:
196196
image: ghcr.io/automattic/vip-container-images/mu-plugins:0.1
197-
command: sh /run.sh
197+
command: /bin/sh /run.sh
198198
volumes:
199199
- mu-plugins:/shared
200200
- type: volume

src/lib/constants/dev-environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ export const DEV_ENVIRONMENT_DEFAULTS = {
4949
phpVersion: Object.keys( DEV_ENVIRONMENT_PHP_VERSIONS )[ 0 ],
5050
} as const;
5151

52-
export const DEV_ENVIRONMENT_VERSION = '2.2.2';
52+
export const DEV_ENVIRONMENT_VERSION = '2.2.3';

0 commit comments

Comments
 (0)