mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 12:19:09 +00:00
fix(appimage): use wget instead of curl for downloads
This commit is contained in:
parent
1030d2f35b
commit
3617dbb508
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue