fix timeout bug in rooting script and update docs

This commit is contained in:
Cooper Quintin
2024-08-02 14:41:24 -07:00
parent 3006871c27
commit 5c4bd161fa
5 changed files with 87 additions and 107 deletions

18
tools/install-dev.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/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