blob: 9c753a0f99520b6fa4ff4cfc18aba4962dfff895 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env bash
set -e
git pull
# Copy static site
hugo
cp -r public/* /var/www/mfashby.net/
# build & install comments app
pushd comments
cargo build --release
install -m755 target/release/comments /usr/local/bin/comments
install -m755 comments.service /etc/systemd/system/comments.service
popd
systemctl restart comments
|