blob: 343bf6d0118137515e0111b11d765b4f1b0b1e07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# Lots of hard coded foo here. This is very digithink.com specific.
{ echo "====================== Start Build `date`==================="
cd /var/www/3dangst/repo
git pull && mkdocs build
rm -rf ../osite
mv ../site ../osite
mv site ..
echo "======================= End Build `date`===================="
} 2>&1 | tee logs/makesite.out
|