fix(appimage): use wget instead of curl for downloads

This commit is contained in:
Erica Marigold 2023-08-03 17:38:27 +05:30 committed by GitHub
parent 1030d2f35b
commit 3617dbb508
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@ app: lune
ingredients: ingredients:
script: script:
- dl_uri=$(curl "https://api.github.com/repos/filiptibell/lune/releases/latest" | grep -E "https.*lune-.*linux-x86_64.zip" | cut -d '"' -f4) - dl_uri=$(curl "https://api.github.com/repos/filiptibell/lune/releases/latest" | grep -E "https.*lune-.*linux-x86_64.zip" | cut -d '"' -f4)
- curl -O $dl_uri - wget $dl_uri
- unzip lune-*.zip - unzip lune-*.zip