Files
avo/examples/stadtx/fork.sh
2019-01-13 10:12:52 -08:00

18 lines
456 B
Bash
Executable File

#!/bin/bash -ex
dl() {
url=$1
filename=$(basename $1)
{
echo "// Code generated by downloading from ${url}. DO NOT EDIT."
echo
curl -L ${url}
} > ${filename}
}
baseurl='https://github.com/dgryski/go-stadtx/raw/3c3d9b328c24a9b5ecd370654cd6e9d60a85752d'
dl ${baseurl}/stadtx.go
dl ${baseurl}/stadtx_test.go
dl 'https://raw.githubusercontent.com/demerphq/BeagleHash/5f8620b953230e5b16171b745155fc3b0ef8f75e/LICENSE'