diff --git a/Meta/build-root-filesystem.sh b/Meta/build-root-filesystem.sh index 06a766a854..f03dd97fda 100755 --- a/Meta/build-root-filesystem.sh +++ b/Meta/build-root-filesystem.sh @@ -33,11 +33,11 @@ if ! command -v rsync >/dev/null; then fi if rsync --chown 2>&1 | grep "missing argument" >/dev/null; then - rsync -aH --chown=0:0 --inplace "$SERENITY_SOURCE_DIR"/Base/ mnt/ - rsync -aH --chown=0:0 --inplace Root/ mnt/ + rsync -aH --chown=0:0 --inplace --update "$SERENITY_SOURCE_DIR"/Base/ mnt/ + rsync -aH --chown=0:0 --inplace --update Root/ mnt/ else - rsync -aH --inplace "$SERENITY_SOURCE_DIR"/Base/ mnt/ - rsync -aH --inplace Root/ mnt/ + rsync -aH --inplace --update "$SERENITY_SOURCE_DIR"/Base/ mnt/ + rsync -aH --inplace --update Root/ mnt/ chown -R 0:0 mnt/ fi