summaryrefslogtreecommitdiffhomepage
path: root/tasks
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2015-06-29 10:17:30 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2015-06-29 10:17:30 +0900
commitd671f57305bcf41aaa5129483a550c8cff9d1fc9 (patch)
tree88d8dd4c77109873ef53a84e077ad0d2910e7f95 /tasks
parent0e0773c6837305828d2293a9bc7bd845d63482ad (diff)
parentfa4b88b89316380750a3621261bf2909d15d3c3f (diff)
downloadmruby-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.rake2
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]