Kexi/Releases/Signatures

From KDE Community Wiki
< Kexi‎ | Releases
Revision as of 10:45, 29 January 2018 by Jstaniek (talk | contribs) (Update for windows)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Signatures can be verified using gpg --verify file.sig file. User-ID: Jarosław Staniek <staniek@kde.org>, Key-ID: 1B6524DB, Fingerprint: 4866 BAF7 13B4 6567 7A40 5964 3C7C 0E20 1B65 24DB, GPG key: here.

To verify multiple signatures for *.xz files in a given directory use bash shell on Linux/Mac or git-bash or mingw shell on Windows. Type:

cd {directory-with-xz-and-sig-files}
for f in $(ls -1 *.xz) ; do gpg  --verify  $f.sig $f ; done && echo "All OK"

"All OK" message will be printed on success.