mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* Makefile.in (update-rubyspec): fix r53208 like r53451.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53607 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e28260cc05
commit
89ee8a557e
2 changed files with 13 additions and 9 deletions
|
@ -1,3 +1,7 @@
|
|||
Thu Jan 21 16:37:50 2016 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* Makefile.in (update-rubyspec): fix r53208 like r53451.
|
||||
|
||||
Wed Jan 20 20:58:25 2016 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* common.mk, Makefile.in: update-config_files is only for Unix
|
||||
|
|
18
Makefile.in
18
Makefile.in
|
@ -478,12 +478,12 @@ update-mspec:
|
|||
@$(CHDIR) $(srcdir); \
|
||||
if [ -d spec/mspec ]; then \
|
||||
echo updating mspec ...; \
|
||||
$(Q:@=:) set -x; \
|
||||
$(Q1:0=:) set -x; \
|
||||
cd spec/mspec && \
|
||||
exec git pull; \
|
||||
else \
|
||||
echo retrieving mspec ...; \
|
||||
$(Q:@=:) set -x; \
|
||||
$(Q1:0=:) set -x; \
|
||||
exec git clone $(MSPEC_GIT_URL) spec/mspec; \
|
||||
fi
|
||||
|
||||
|
@ -491,12 +491,12 @@ update-rubyspec: update-mspec
|
|||
@$(CHDIR) $(srcdir); \
|
||||
if [ -d spec/rubyspec ]; then \
|
||||
echo updating rubyspec ...; \
|
||||
$(Q:@=:) set -x; \
|
||||
$(Q1:0=:) set -x; \
|
||||
cd spec/rubyspec && \
|
||||
exec git pull; \
|
||||
else \
|
||||
echo retrieving rubyspec ...; \
|
||||
$(Q:@=:) set -x; \
|
||||
$(Q1:0=:) set -x; \
|
||||
exec git clone $(RUBYSPEC_GIT_URL) spec/rubyspec; \
|
||||
fi
|
||||
|
||||
|
@ -507,13 +507,13 @@ update-doclie:
|
|||
@$(CHDIR) $(srcdir); \
|
||||
if [ -d coverage/doclie ]; then \
|
||||
echo updating doclie ...; \
|
||||
$(Q:@=:) set -x; \
|
||||
$(Q1:0=:) set -x; \
|
||||
cd coverage/doclie && \
|
||||
git fetch && \
|
||||
exec git checkout $(DOCLIE_GIT_REF); \
|
||||
else \
|
||||
echo retrieving doclie ...; \
|
||||
$(Q:@=:) set -x; \
|
||||
$(Q1:0=:) set -x; \
|
||||
exec git clone --branch $(DOCLIE_GIT_REF) $(DOCLIE_GIT_URL) coverage/doclie; \
|
||||
fi
|
||||
|
||||
|
@ -521,7 +521,7 @@ update-simplecov-html:
|
|||
@$(CHDIR) $(srcdir); \
|
||||
if [ -d coverage/simplecov-html ]; then \
|
||||
echo updating simplecov-html ...; \
|
||||
$(Q:@=:) set -x; \
|
||||
$(Q1:0=:) set -x; \
|
||||
cd coverage/simplecov-html && \
|
||||
git fetch && \
|
||||
exec git checkout $(SIMPLECOV_HTML_GIT_REF); \
|
||||
|
@ -534,13 +534,13 @@ update-simplecov:
|
|||
@$(CHDIR) $(srcdir); \
|
||||
if [ -d coverage/simplecov ]; then \
|
||||
echo updating simplecov ...; \
|
||||
$(Q:@=:) set -x; \
|
||||
$(Q1:0=:) set -x; \
|
||||
cd coverage/simplecov && \
|
||||
git fetch && \
|
||||
exec git checkout $(SIMPLECOV_GIT_REF); \
|
||||
else \
|
||||
echo retrieving simplecov ...; \
|
||||
$(Q:@=:) set -x; \
|
||||
$(Q1:0=:) set -x; \
|
||||
exec git clone --branch $(SIMPLECOV_GIT_REF) $(SIMPLECOV_GIT_URL) coverage/simplecov; \
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue