Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


-verify the signatures:
gpg --verify $ZIP.asc $ZIP
E.g.:
for ZIP in *.zip; do gpg --verify $ZIP.asc $ZIP; done

or

find . -name '*.asc' -exec gpg --verify '{}' ';'

3. Publishing them in the staging area

...