mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-22 10:12:06 +08:00
1dcd660815
fix shebangs
12 lines
216 B
Bash
Executable File
12 lines
216 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
PORT=5555
|
|
|
|
setprop service.adb.tcp.port $PORT
|
|
sudo systemctl start adbd
|
|
|
|
IP=$(echo $SSH_CONNECTION | awk '{ print $3}')
|
|
echo "then, connect on your computer:"
|
|
echo "adb connect $IP:$PORT"
|