make sure verify.sh is replaced by last version when downloaded (#1956)

fixes #1563
This commit is contained in:
Settoshi Tonami 2025-12-02 06:06:15 +00:00 committed by GitHub
parent 46a2d9e410
commit fd9074f9e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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