From a6cebc76ba2198e967f4b35a0b4044871f115753 Mon Sep 17 00:00:00 2001 From: rob thijssen Date: Mon, 27 Apr 2026 10:46:11 +0300 Subject: [PATCH] docs: use sudo for repo server commands in rebuild instructions Co-Authored-By: Claude Opus 4.6 (1M context) --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index cf7833c..710d02c 100644 --- a/readme.md +++ b/readme.md @@ -113,9 +113,9 @@ sudo dnf install mistralrs-server-cuda13 To force a rebuild of an already-published RPM (e.g. after a packaging change), remove the RPM from the repo server and update the index: ```bash -ssh oolon "rm /var/www/rpm/fedora/43/x86_64/mistralrs-server-cuda13--1.fc43.x86_64.rpm \ +ssh oolon "sudo rm /var/www/rpm/fedora/43/x86_64/mistralrs-server-cuda13--1.fc43.x86_64.rpm \ && cd /var/www/rpm/fedora/43/x86_64 \ - && createrepo_c --update ." + && sudo createrepo_c --update ." ``` The next poll-upstream cycle (every 15 minutes) will detect the missing package and trigger a full rebuild. You can also trigger poll-upstream manually from the Gitea Actions UI to avoid waiting.