mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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
This commit is contained in:
parent
d6543f8056
commit
50ec15d676
1 changed files with 3 additions and 3 deletions
|
@ -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 ...; \
|
||||
|
|
Loading…
Add table
Reference in a new issue