[前][次][番号順一覧][スレッド一覧]

ruby-changes:41136

From: nobu <ko1@a...>
Date: Sun, 20 Dec 2015 10:15:18 +0900 (JST)
Subject: [ruby-changes:41136] nobu:r53209 (trunk): Makefile.in: remove unintentional exec

nobu	2015-12-20 10:15:12 +0900 (Sun, 20 Dec 2015)

  New Revision: 53209

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=53209

  Log:
    Makefile.in: remove unintentional exec
    
    * Makefile.in (update-coverage): remove unintentional `exec` from
      commands followed by other commands.

  Modified files:
    trunk/Makefile.in
Index: Makefile.in
===================================================================
--- Makefile.in	(revision 53208)
+++ Makefile.in	(revision 53209)
@@ -500,7 +500,7 @@ update-doclie: https://github.com/ruby/ruby/blob/trunk/Makefile.in#L500
 	  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: https://github.com/ruby/ruby/blob/trunk/Makefile.in#L514
 	  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: https://github.com/ruby/ruby/blob/trunk/Makefile.in#L527
 	  echo updating simplecov ...; \
 	  $(Q:@=:) set -x; \
 	  cd coverage/simplecov && \
-	  exec git fetch && \
+	  git fetch && \
 	  exec git checkout $(SIMPLECOV_GIT_REF); \
 	else \
 	  echo retrieving simplecov ...; \

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]