1
0
Fork 0
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:
mh4ckt3mh4ckt1c4s 2023-03-02 23:46:30 +01:00
parent ca17e80f0b
commit 41e6e0e177

View file

@ -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