mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-26 22:03:55 +08:00
12 lines
330 B
Bash
Executable File
12 lines
330 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# move files into place
|
|
adb push files/id_rsa_openpilot_ro /tmp/id_rsa_openpilot_ro
|
|
adb shell mv /tmp/id_rsa_openpilot_ro /data/data/com.termux/files/
|
|
|
|
# moving continue into place runs the continue script
|
|
adb push files/continue.sh /tmp/continue.sh
|
|
adb shell mv /tmp/continue.sh /data/data/com.termux/files/
|
|
|