From 61a1f063eaba8e094fd0ab6b6346d80dceb1224c Mon Sep 17 00:00:00 2001 From: billz Date: Sat, 25 Nov 2023 11:30:36 +0000 Subject: [PATCH] Update rsync exclusion path --- installers/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/common.sh b/installers/common.sh index d3b98f55..e7a54659 100755 --- a/installers/common.sh +++ b/installers/common.sh @@ -577,7 +577,7 @@ function _download_latest_files() { fi _install_log "Installing application to $webroot_dir" - sudo rsync -av --exclude='/ajax/system/sys_read_logfile.php' "$source_dir"/ "$webroot_dir"/ >/dev/null 2>&1 || _install_status 1 "Unable to install files to $webroot_dir" + sudo rsync -av --exclude='ajax/system/sys_read_logfile.php' "$source_dir"/ "$webroot_dir"/ >/dev/null 2>&1 || _install_status 1 "Unable to install files to $webroot_dir" if [ "$update" == 1 ]; then _install_log "Applying existing configuration to ${webroot_dir}/includes"