mirror of
https://github.com/YunoHost-Apps/audiobookshelf_ynh.git
synced 2024-09-03 18:06:19 +02:00
url fix
This commit is contained in:
parent
a51338401c
commit
2373ef0d40
1 changed files with 2 additions and 1 deletions
3
.github/workflows/updater.sh
vendored
3
.github/workflows/updater.sh
vendored
|
@ -56,7 +56,8 @@ tempdir="$(mktemp -d)"
|
|||
|
||||
# Download sources and calculate checksum
|
||||
filename="v$version.tar.gz"
|
||||
curl --silent -4 -L "https://github.com/advplyr/audiobookshelf/archive/refs/tags/v$version.tar.gz" -o "$tempdir/$filename"
|
||||
asset_url="https://github.com/advplyr/audiobookshelf/archive/refs/tags/v$version.tar.gz"
|
||||
curl --silent -4 -L $asset_url -o "$tempdir/$filename"
|
||||
checksum=$(sha256sum "$tempdir/$filename" | head -c 64)
|
||||
|
||||
# Delete temporary directory
|
||||
|
|
Loading…
Add table
Reference in a new issue