summaryrefslogtreecommitdiff
path: root/web/bsu
diff options
context:
space:
mode:
authorGeorge Abbott <george@gabbott.dev>2023-10-31 17:54:07 +0000
committerGeorge Abbott <george@gabbott.dev>2023-10-31 17:54:07 +0000
commit4d0bd914e7c1ee65f4036e60149a7b891906a5d3 (patch)
treec2a6751823e064e003cd4f6166df07bfc106d7eb /web/bsu
Commit all to date.
Diffstat (limited to 'web/bsu')
-rwxr-xr-xweb/bsu18
1 files changed, 18 insertions, 0 deletions
diff --git a/web/bsu b/web/bsu
new file mode 100755
index 0000000..d00dee8
--- /dev/null
+++ b/web/bsu
@@ -0,0 +1,18 @@
+#!/bin/sh
+# Bring Sally Up: make an update to Bring Sally Up, and it will create a commit
+# for that change. It won't push without `-u`, in case the commit can be
+# amended.
+
+FILEPATH="$HOME/web/www/gabbott.dev/gabbott.dev/blog/pushups/bring-sally-up.html"
+ORIGHASH="$(sha256sum "$FILEPATH")"
+
+nvim "$FILEPATH"
+if [ "$(sha256sum "$FILEPATH")" = "$ORIGHASH" ] ; then
+ echo "No changes made, hence no commit will be made"
+ exit 0
+else
+ git commit -m "Bring Sally Up: entry for $(date +%Y-%m-%d)"
+ # TODO: handle `-u`.
+fi
+
+