2024-07-02 15:57:29 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set +x
|
2024-07-28 04:02:08 +00:00
|
|
|
cross build --target aarch64-unknown-linux-gnu --release
|
2024-07-17 15:20:06 +00:00
|
|
|
rsync -aczP target/aarch64-unknown-linux-gnu/release/pi-frame-server 192.168.0.185:
|
2024-07-02 15:57:29 +00:00
|
|
|
# scp target/aarch64-unknown-linux-gnu/debug/pi-frame-server 192.168.0.186:
|
2024-07-28 04:02:08 +00:00
|
|
|
ssh 192.168.0.185 ./pi-frame-server serve
|