From 50ec15d676e578f49e35bf4a6bbd9faeb2c2bcff Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 20 Dec 2015 01:15:12 +0000 Subject: [PATCH] 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 --- Makefile.in | 6 +++--- 1 file 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 ...; \