blob: 6edc1e8e5f613c6105771bab17644e6231127cf3 (
plain)
1
2
3
4
5
6
|
#!/bin/sh
cargo build --release --target x86_64-unknown-linux-musl && \
strip target/x86_64-unknown-linux-musl/release/websweeper && \
rsync --progress page.html root@masba.net:/srv/tooling/
rsync --progress target/x86_64-unknown-linux-musl/release/websweeper root@masba.net:/srv/tooling/
|