aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-08-03 15:19:51 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-08-03 15:19:51 +1200
commit7476100c8c45d5d40b53f93779c4e9b73802713e (patch)
treeeb42f909cf9104a66472d57331a9c3188a824167 /bin
parentMerge branch 'release/v7.5.0' into develop (diff)
downloaddotfiles-7476100c8c45d5d40b53f93779c4e9b73802713e.tar.gz
dotfiles-7476100c8c45d5d40b53f93779c4e9b73802713e.zip
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