mirror of
https://github.com/getAlby/hub.git
synced 2026-08-13 12:33:39 +02:00
make sure verify.sh is replaced by last version when downloaded (#1956)
fixes #1563
This commit is contained in:
parent
46a2d9e410
commit
fd9074f9e0
1 changed files with 2 additions and 2 deletions
|
|
@ -25,13 +25,13 @@ verify_package() {
|
|||
done
|
||||
|
||||
echo "Downloading manifest file..."
|
||||
if ! wget -q "$MANIFEST_URL"; then
|
||||
if ! wget -q -O manifest.txt "$MANIFEST_URL"; then
|
||||
echo "❌ Failed to download manifest file." >&2
|
||||
return 1
|
||||
fi
|
||||
|
||||
echo "Downloading manifest signature file..."
|
||||
if ! wget -q "$SIGNATURE_URL"; then
|
||||
if ! wget -q -O manifest.txt.asc "$SIGNATURE_URL"; then
|
||||
echo "❌ Failed to download manifest signature file." >&2
|
||||
return 1
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue