aboutsummaryrefslogtreecommitdiff
path: root/bin/jfc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-09 17:15:40 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-09 17:20:10 +1200
commit9fb350dc7c8cc5259ef24e0cb097031179fab1d6 (patch)
tree839dd0b8ee3f5323b1cd6aefa22b605b99437d62 /bin/jfc
parentMention nosls/sls flags in slsf(1) man page (diff)
downloaddotfiles-9fb350dc7c8cc5259ef24e0cb097031179fab1d6.tar.gz
dotfiles-9fb350dc7c8cc5259ef24e0cb097031179fab1d6.zip
Improve commenting/exit handling in binscripts
Diffstat (limited to 'bin/jfc')
-rwxr-xr-xbin/jfc13
1 files changed, 10 insertions, 3 deletions
diff --git a/bin/jfc b/bin/jfc
index 36e11451..1ac8d16d 100755
--- a/bin/jfc
+++ b/bin/jfc
@@ -1,7 +1,14 @@
#!/bin/sh
-# Commit all changes to a Git repository with a stock message
-# message.
+# Commit all changes to a Git repository with a stock message message
+
+# Enter the given directory, default to the current one
cd -- "${1:-.}" || exit
+
+# Check if there are any changes; if not, don't proceed (but it's not an error)
grc || exit 0
+
+# Add all changes
git add --all || exit
-git commit --message 'Committed by jfc(1)' --quiet || exit
+
+# Quietly commit with a stock message and use its exit value as ours
+git commit --message 'Committed by jfc(1)' --quiet