summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD Delmar Davis <don@suspectdevices.com>2025-01-10 16:14:31 -0800
committerD Delmar Davis <don@suspectdevices.com>2025-01-10 16:14:31 -0800
commit3d9064dd5a4e58690c68cd8f1959248a1d28264b (patch)
treee36c773d42442550eb3d150313fba47092f087c5
parent9cfca461cece125b70cb648b0446548f1300f952 (diff)
add makesite.sh
-rwxr-xr-xmakesite.sh10
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