Skip to content
Snippets Groups Projects
Commit d6d05b2a authored by Kitware Robot's avatar Kitware Robot Committed by Brad King
Browse files

ExternalData: Convert content links from MD5 to SHA512

Populate a script with `map_<md5>=<sha512>` variable settings and
then run the following to convert the content link files:

    git ls-files -- '*.md5' | while read f; do
      md5="$(cat "$f")"
      sha512="$(eval echo \${map_$md5})"
      rm "$f"
      echo $sha512 > ${f%.md5}.sha512
    done
parent 59eb1d33
No related branches found
No related tags found
No related merge requests found
Showing
with 10 additions and 10 deletions
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment