diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-07 06:49:02 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-07 06:49:02 -0800 |
| commit | 7d47096434994d9eb9712546879e3b52b04d3443 (patch) | |
| tree | a5317c506f8799b3f5a7de8fc11f3529846ce0ed /tasks | |
| parent | 7ce2d2636463fbcf9228f4ab2b284ef3625dc42d (diff) | |
| parent | f21048065219a2aac182b3cf08f2ae752d41fe90 (diff) | |
| download | mruby-7d47096434994d9eb9712546879e3b52b04d3443.tar.gz mruby-7d47096434994d9eb9712546879e3b52b04d3443.zip | |
Merge pull request #962 from masahino/fix_branch_option
fix handling of :branch option of gem.conf
Diffstat (limited to 'tasks')
| -rw-r--r-- | tasks/mruby_build_gem.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/mruby_build_gem.rake b/tasks/mruby_build_gem.rake index 69dd4cafc..9f5804406 100644 --- a/tasks/mruby_build_gem.rake +++ b/tasks/mruby_build_gem.rake @@ -27,7 +27,7 @@ module MRuby return gemdir if File.exists?(gemdir) options = [params[:options]] || [] - options << "--branch \"#{params[:branch]}\"" if params[:tag] + options << "--branch \"#{params[:branch]}\"" if params[:branch] FileUtils.mkdir_p "build/mrbgems" git.run_clone gemdir, url, options |
