mirror of
https://github.com/YunoHost-Apps/searxng_ynh.git
synced 2024-09-03 20:26:00 +02:00
Fix error in updater.sh
This commit is contained in:
parent
ca17e80f0b
commit
41e6e0e177
1 changed files with 1 additions and 1 deletions
2
.github/workflows/updater.sh
vendored
2
.github/workflows/updater.sh
vendored
|
@ -49,7 +49,7 @@ tempdir="$(mktemp -d)"
|
|||
|
||||
# Download sources and calculate checksum
|
||||
curl --silent -4 -L $asset_url -o "$tempdir/master.zip"
|
||||
checksum=$(sha256sum "$tempdir/$filename" | head -c 64)
|
||||
checksum=$(sha256sum "$tempdir/master.zip" | head -c 64)
|
||||
|
||||
# Delete temporary directory
|
||||
rm -rf $tempdir
|
||||
|
|
Loading…
Reference in a new issue