diff options
| author | D Delmar Davis <don@suspectdevices.com> | 2025-01-10 16:14:31 -0800 |
|---|---|---|
| committer | D Delmar Davis <don@suspectdevices.com> | 2025-01-10 16:14:31 -0800 |
| commit | 3d9064dd5a4e58690c68cd8f1959248a1d28264b (patch) | |
| tree | e36c773d42442550eb3d150313fba47092f087c5 | |
| parent | 9cfca461cece125b70cb648b0446548f1300f952 (diff) | |
add makesite.sh
| -rwxr-xr-x | makesite.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/makesite.sh b/makesite.sh new file mode 100755 index 0000000..8f646ed --- /dev/null +++ b/makesite.sh @@ -0,0 +1,10 @@ +#!/bin/sh +# Lots of hard coded foo here. This is very digithink.com specific. +{ echo "====================== Start Build `date`===================" + cd /var/www/bartender/repo + git pull && mkdocs build + rm -rf ../osite + mv ../site ../osite + mv site .. + echo "=========================== Done: `date` ====================" +}| tee logs/pullandbuild.out |
