mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-04-26 07:29:59 -07:00
18 lines
409 B
Bash
Executable File
18 lines
409 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-linux.sh
|
|
|
|
cd ..
|
|
rm -rf build |