about summary refs log tree commit diff stats
path: root/git_log_filtered
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2018-02-20 01:36:02 -0800
committerKartik K. Agaram <vc@akkartik.com>2018-02-20 01:38:15 -0800
commitba838feae98ad0e3a403429422bad3f6fa4367cc (patch)
tree56df29adee7d0394a2cc359e930c36e4f410602c /git_log_filtered
parentcd1113882450382ebe39db7dd8690812bac1aba7 (diff)
downloadmu-ba838feae98ad0e3a403429422bad3f6fa4367cc.tar.gz
4211
Just ran into first issue from using the portable /bin/sh rather than a
modern shell:
  https://stackoverflow.com/questions/15744421/read-command-doesnt-wait-for-input

Turn on errexit everywhere.
Diffstat (limited to 'git_log_filtered')
-rwxr-xr-xgit_log_filtered1
1 files changed, 1 insertions, 0 deletions
diff --git a/git_log_filtered b/git_log_filtered
index b17cd3bf..7ab6d43e 100755
--- a/git_log_filtered
+++ b/git_log_filtered
@@ -4,5 +4,6 @@
 # I usually run this through an alias local to this repo:
 #   $ git config alias.ll '!./git_log_filtered'
 #   $ git ll --stat
+set -e
 
 git log $* -- . ":(exclude)html"