From 189f04cc475d18438b6e216a2890e000ae1e79c9 Mon Sep 17 00:00:00 2001 From: Deeman Date: Tue, 24 Feb 2026 02:37:50 +0100 Subject: [PATCH] fix(infra): run rclone installer with sudo Co-Authored-By: Claude Sonnet 4.6 --- infra/setup_server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/setup_server.sh b/infra/setup_server.sh index 89e9f83..bfda48f 100644 --- a/infra/setup_server.sh +++ b/infra/setup_server.sh @@ -44,7 +44,7 @@ fi # Install rclone (landing zone backup to R2) if ! command -v rclone &>/dev/null; then echo "Installing rclone..." - curl -fsSL https://rclone.org/install.sh | bash + curl -fsSL https://rclone.org/install.sh | sudo bash echo "Installed rclone $(rclone version --check | head -1)" else echo "rclone already installed, skipping"