From 655c6e8d24e00f7c830c9642634b2458bbcceedc Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Wed, 23 Apr 2025 15:04:37 +0100 Subject: [PATCH] fix: Add rsync to dependencies for update function --- scripts/install-pulse.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install-pulse.sh b/scripts/install-pulse.sh index fc175f020..b3e02148a 100644 --- a/scripts/install-pulse.sh +++ b/scripts/install-pulse.sh @@ -146,8 +146,8 @@ apt_update_upgrade() { } install_dependencies() { - print_info "Installing necessary dependencies (git, curl, sudo, gpg)..." - if apt-get install -y git curl sudo gpg > /dev/null; then + print_info "Installing necessary dependencies (git, curl, sudo, gpg, rsync)..." + if apt-get install -y git curl sudo gpg rsync > /dev/null; then print_success "Dependencies installed." else print_error "Failed to install dependencies."