mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-04-26 07:29:59 -07:00
12 lines
516 B
Bash
Executable File
12 lines
516 B
Bash
Executable File
#!/bin/bash -e
|
|
cd bin/web
|
|
npm run build
|
|
cd ..
|
|
docker build -t rayhunter-devenv -f tools/devenv.dockerfile .
|
|
echo ' build!'
|
|
docker run --user $UID:$GID -v ./:/workdir -w /workdir -it rayhunter-devenv sh -c 'cargo build --release --target="armv7-unknown-linux-musleabihf"'
|
|
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"'
|