From 8a13ea83e951f444dfb5e91f551ccfa0923ff90c Mon Sep 17 00:00:00 2001 From: Andreas Hnida Date: Wed, 17 Apr 2024 23:42:37 +0200 Subject: [PATCH] Update rsync installation by removing 'sudo' from the command. --- .gitea/workflows/pipeline-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pipeline-test.yaml b/.gitea/workflows/pipeline-test.yaml index 72f0058..cb2d6c0 100644 --- a/.gitea/workflows/pipeline-test.yaml +++ b/.gitea/workflows/pipeline-test.yaml @@ -60,7 +60,7 @@ jobs: run: hugo --minify - name: Setup rsync - run: sudo apt-get update && sudo apt-get install -y rsync + run: apt-get update && apt-get install -y rsync - name: Setup SSH Key uses: webfactory/ssh-agent@v0.5.3