diff options
Diffstat (limited to 'deploy.sh')
-rwxr-xr-x | deploy.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..e4244ea --- /dev/null +++ b/deploy.sh @@ -0,0 +1,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/www/tooling/ + rsync --progress target/x86_64-unknown-linux-musl/release/websweeper root@masba.net:/srv/www/tooling/ |