summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2019-11-11 18:12:34 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2019-11-11 18:13:24 +0900
commitc268e36e44e60449365cc11a4087c1c1d3b13a1d (patch)
tree5ed833c15d93ecccf40d312aef49777591349d0b /Rakefile
parent067c11f65d1eecbe53b247661aabbb00f0ba9a13 (diff)
downloadmruby-c268e36e44e60449365cc11a4087c1c1d3b13a1d.tar.gz
mruby-c268e36e44e60449365cc11a4087c1c1d3b13a1d.zip
Require `Regexp.escape` before interpolating `build_dir`; fix #4817
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 28e2d75c8..69c7d4c89 100644
--- a/Rakefile
+++ b/Rakefile
@@ -62,7 +62,7 @@ MRuby.each_target do |target|
relative_from_root = gem.dir.relative_path_from(MRUBY_ROOT)
current_build_dir = File.expand_path "#{build_dir}/#{relative_from_root}"
- if current_build_dir !~ /^#{build_dir}/
+ if current_build_dir !~ /^#{Regexp.escape(build_dir)}/
current_build_dir = "#{build_dir}/mrbgems/#{gem.name}"
end