diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-06-29 10:17:30 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-06-29 10:17:30 +0900 |
| commit | d671f57305bcf41aaa5129483a550c8cff9d1fc9 (patch) | |
| tree | 88d8dd4c77109873ef53a84e077ad0d2910e7f95 /tasks | |
| parent | 0e0773c6837305828d2293a9bc7bd845d63482ad (diff) | |
| parent | fa4b88b89316380750a3621261bf2909d15d3c3f (diff) | |
| download | mruby-d671f57305bcf41aaa5129483a550c8cff9d1fc9.tar.gz mruby-d671f57305bcf41aaa5129483a550c8cff9d1fc9.zip | |
Merge pull request #2861 from scalone/quotes_use
Fix quotes use during load special path gem of gem.
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 d9d2575bd..68de28761 100644 --- a/tasks/mruby_build_gem.rake +++ b/tasks/mruby_build_gem.rake @@ -71,7 +71,7 @@ module MRuby fail "unknown mgem protocol: #{conf['protocol']}" if conf['protocol'] != 'git' params[:git] = conf['repository'] - params[:branch] = conf['branch"] if conf["branch'] + params[:branch] = conf['branch'] if conf['branch'] end if params[:core] |
