6 lines
183 B
Bash
Executable File
6 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
cargo clean
|
|
cross build --release --target aarch64-unknown-linux-gnu
|
|
rsync -e "ssh" target/aarch64-unknown-linux-gnu/release/weather pi:/data/rust/weather
|
|
cargo clean
|