aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-08-14 14:18:59 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-08-14 14:18:59 +1200
commit8a7d53c1b1a44a04e86c3aa220786a57accb47ce (patch)
tree16c4f60f11f18323a9667167c848963d9fde254f /bin
parentMerge branch 'release/v7.5.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-7.6.0.tar.gz (sig)
dotfiles-7.6.0.zip
Merge branch 'release/v7.6.0'v7.6.0
* release/v7.6.0: Use nice characters in vimrc stub Make intent of `umake` terminal condition clearer
Diffstat (limited to 'bin')
-rw-r--r--bin/umake.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/umake.sh b/bin/umake.sh
index 3c381e09..18f9b53e 100644
--- a/bin/umake.sh
+++ b/bin/umake.sh
@@ -3,7 +3,8 @@
while [ "$PWD" != / ] ; do
for mf in makefile Makefile ; do
[ -f "$mf" ] || continue
- exec make "$@"
+ make "$@"
+ exit
done
cd .. || exit
done