ci: fix rustypipe-botguard download
This commit is contained in:
parent
c0accc3e12
commit
e9a8f5b8d2
1 changed files with 3 additions and 2 deletions
|
|
@ -28,8 +28,9 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
TARGET=$(rustc --version --verbose | grep "host:" | sed -e 's/^host: //')
|
TARGET=$(rustc --version --verbose | grep "host:" | sed -e 's/^host: //')
|
||||||
curl -SsL -o rustypipe-botguard.gz "https://thetadev.de/dl/rustypipe-botguard-${TARGET}.gz"
|
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
|
gunzip rustypipe-botguard.gz
|
||||||
sudo chmod +x /usr/local/bin/rustypipe-botguard
|
sudo install -Dm755 rustypipe-botguard /usr/local/bin/rustypipe-botguard
|
||||||
|
rm rustypipe-botguard
|
||||||
|
|
||||||
- name: 📎 Clippy
|
- name: 📎 Clippy
|
||||||
run: cargo clippy --all --tests --features=rss,indicatif,audiotag -- -D warnings
|
run: cargo clippy --all --tests --features=rss,indicatif,audiotag -- -D warnings
|
||||||
|
|
|
||||||
Reference in a new issue