Github user ctubbsii commented on the issue:

    https://github.com/apache/incubator-fluo/issues/790
  
    ```bash
    function checkFile {
      local file; file=$1
      echo '='
      echo "$file"
      gpg2 --verify "${file}".asc "$file"
      for hash in md5 sha1; do
        ${hash}sum -c <(echo "$(cat "${file}.${hash}") *$file")
      done
    }
    export -f checkFile
    find . -type f -regex '.*\.\(pom\|jar\|gz\)' -exec bash -c 'checkFile {}' \;
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to