summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2015-11-16 12:03:20 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2015-11-16 12:03:20 +0900
commit916630be1a7a7996650b89f25735db582765f1fb (patch)
tree71176f2b09ea3668f04205549f76022c660a6c67
parent85b5af61544d730106271441c07246d9fa027daa (diff)
parent98285e6b16ec43ce921e779478eddbb2060cd33f (diff)
downloadmruby-916630be1a7a7996650b89f25735db582765f1fb.tar.gz
mruby-916630be1a7a7996650b89f25735db582765f1fb.zip
Merge pull request #3013 from zzak/dont-pull-gems-by-default
This patch changes git gem behavior to never pull gems unless specified.
-rw-r--r--tasks/mruby_build_gem.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/mruby_build_gem.rake b/tasks/mruby_build_gem.rake
index 896aeb147..9a802097f 100644
--- a/tasks/mruby_build_gem.rake
+++ b/tasks/mruby_build_gem.rake
@@ -106,7 +106,7 @@ module MRuby
git.run_checkout gemdir, params[:checksum_hash]
else
# Jump to the top of the branch
- git.run_checkout gemdir, branch
+ git.run_checkout gemdir, branch if $pull_gems
end
else
fail "unknown gem option #{params}"