diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2025-03-05 15:19:09 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2025-03-11 09:38:39 +0100 |
| commit | 2fa428c58a3b43010690a2c644350386e8e597f2 (patch) | |
| tree | 78d4e6412fd6c37b4a2363be5e93ccd4a8cc9872 | |
| parent | 9b24cd44f17845afb2f22eda34ac32ec6fd0b5bf (diff) | |
| download | mullvadvpn-2fa428c58a3b43010690a2c644350386e8e597f2.tar.xz mullvadvpn-2fa428c58a3b43010690a2c644350386e8e597f2.zip | |
Specify what file to check with gpg explicitly
Reduces noisy output from gpg
| -rwxr-xr-x | ci/mullvad-browser/download-mullvad-browser.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/mullvad-browser/download-mullvad-browser.sh b/ci/mullvad-browser/download-mullvad-browser.sh index 14072fcda8..66de6a5a45 100755 --- a/ci/mullvad-browser/download-mullvad-browser.sh +++ b/ci/mullvad-browser/download-mullvad-browser.sh @@ -43,7 +43,7 @@ function main() { fi echo "[#] Verifying $PACKAGE_FILENAME signature" - if ! gpg --verify "$PACKAGE_FILENAME".asc; then + if ! gpg --verify "$PACKAGE_FILENAME".asc "$PACKAGE_FILENAME"; then echo "[!] Failed to verify signature" rm "$PACKAGE_FILENAME" "$PACKAGE_FILENAME.asc" exit 1 |
