blob: 84bb4671978efd1c56dfd64297b3a6f6002536a4 (
plain)
1
2
3
4
5
6
7
|
function get_latest_version {
curl -s https://github.com/CryptoGraphics/VerthashMiner/releases/latest | perl -pe 's!.*/tag/v?([0-9].+?)".*!$1!'
}
function clean_downloads {
rm -rf VerthashMiner
}
|