mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-26 11:52:07 +08:00
79ca8c9ec9
old-commit-hash: e94a30bec0
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/
|
|
|