aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-20 01:15:12 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-20 01:15:12 +0000
commit7cd0b86a8fe19060dcc7ade0da998aba1885c308 (patch)
tree770b20e5779fbd9d39cab36ce83f0d09eed23dcd /Makefile.in
parent4de03a0188351e70ba719c5cd7eedcbc6b96e15f (diff)
downloadruby-7cd0b86a8fe19060dcc7ade0da998aba1885c308.tar.gz
Makefile.in: remove unintentional exec
* Makefile.in (update-coverage): remove unintentional `exec` from commands followed by other commands. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53209 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 12fac909eb..76b61f5581 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -500,7 +500,7 @@ update-doclie:
echo updating doclie ...; \
$(Q:@=:) set -x; \
cd coverage/doclie && \
- exec git fetch && \
+ git fetch && \
exec git checkout $(DOCLIE_GIT_REF); \
else \
echo retrieving doclie ...; \
@@ -514,7 +514,7 @@ update-simplecov-html:
echo updating simplecov-html ...; \
$(Q:@=:) set -x; \
cd coverage/simplecov-html && \
- exec git fetch && \
+ git fetch && \
exec git checkout $(SIMPLECOV_HTML_GIT_REF); \
else \
echo retrieving simplecov-html ...; \
@@ -527,7 +527,7 @@ update-simplecov:
echo updating simplecov ...; \
$(Q:@=:) set -x; \
cd coverage/simplecov && \
- exec git fetch && \
+ git fetch && \
exec git checkout $(SIMPLECOV_GIT_REF); \
else \
echo retrieving simplecov ...; \