From ef335258b7053377e0f2240012d6a5edcec43fec Mon Sep 17 00:00:00 2001 From: ThetaDev Date: Mon, 3 Feb 2025 02:57:40 +0100 Subject: [PATCH] ci: fix rustypipe-botguard download --- .forgejo/workflows/ci.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index 4598aa8..8576b83 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -28,8 +28,9 @@ jobs: run: | TARGET=$(rustc --version --verbose | grep "host:" | sed -e 's/^host: //') curl -SsL -o rustypipe-botguard.gz "https://thetadev.de/dl/rustypipe-botguard-${TARGET}.gz" - sudo gunzip -c rustypipe-botguard.gz > /usr/local/bin/rustypipe-botguard - sudo chmod +x /usr/local/bin/rustypipe-botguard + gunzip rustypipe-botguard.gz + sudo install -Dm755 rustypipe-botguard /usr/local/bin/rustypipe-botguard + rm rustypipe-botguard - name: 📎 Clippy run: cargo clippy --all --tests --features=rss,indicatif,audiotag -- -D warnings