mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-04-27 07:59:59 -07:00
19 lines
402 B
Bash
Executable File
19 lines
402 B
Bash
Executable File
#!/bin/env bash
|
|
|
|
set -e
|
|
|
|
mkdir build
|
|
cd build
|
|
curl -LOs "https://github.com/EFForg/rayhunter/releases/latest/download/release.tar"
|
|
curl -LOs "https://github.com/EFForg/rayhunter/releases/latest/download/release.tar.sha256"
|
|
if ! sha256sum -c --quiet release.tar.sha256; then
|
|
echo "Download corrupted! (╯°□°)╯︵ ┻━┻"
|
|
exit 1
|
|
fi
|
|
|
|
tar -xf release.tar
|
|
./install.sh
|
|
|
|
cd ..
|
|
rm -rf build
|