mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-26 07:39:59 -07:00
11 lines
252 B
Bash
Executable File
11 lines
252 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
rm -rf pools
|
|
curl -sLO https://github.com/mempool/mining-pool-logos/archive/refs/heads/master.zip
|
|
unzip -qo master.zip
|
|
rm master.zip
|
|
mv mining-pool-logos-master pools
|
|
rm -r ./pools/.github
|
|
find pools -type f ! -name '*.svg' -delete
|