Files
rayhunter/make.sh
2025-04-28 17:19:28 -07:00

10 lines
375 B
Bash
Executable File

#!/bin/bash -e
pushd bin/web
npm run build
popd
cargo build --release --target="armv7-unknown-linux-musleabihf" #--features debug
adb shell '/bin/rootshell -c "/etc/init.d/rayhunter_daemon stop"'
adb push target/armv7-unknown-linux-musleabihf/release/rayhunter-daemon /data/rayhunter/rayhunter-daemon
echo "rebooting the device..."
adb shell '/bin/rootshell -c "reboot"'