Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
352 B
23 lines
352 B
2 years ago
|
#!/bin/bash
|
||
|
|
||
|
set -eux
|
||
|
commit="$(git rev-parse "$1^{commit}")"
|
||
|
|
||
|
tmp="$(mktemp --directory)"
|
||
|
trap "rm -rvf \"$tmp\"" EXIT
|
||
|
|
||
|
# c-o
|
||
|
git worktree add "$tmp" "$commit"
|
||
|
trap "git worktree remove \"$tmp\"" EXIT
|
||
|
cd "$tmp"
|
||
|
|
||
|
# make
|
||
|
cd docs
|
||
|
make html
|
||
|
|
||
|
# rsync
|
||
|
rsync -raAXP _build/html/ "Gimli:WWW/mwd/$commit/"
|
||
|
ssh Gimli "chmod -R o+rX WWW/mwd/$commit"
|
||
|
|
||
|
echo Done.
|