summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-07-26 15:45:18 +0800
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-07-26 15:45:18 +0800
commit348c9687bf0454fce787e0d4886fe244831b0a84 (patch)
treea406d29171ff52b0c588507e9cb0fc90060f2957 /tool
parent51f22deadba35ed57b794339fd19889ed0cc8dc8 (diff)
Escape parentheses for syntax hilighting for VScode.
Diffstat (limited to 'tool')
-rw-r--r--tool/sync_default_gems.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb
index f67c868f44..aa98f60ca1 100644
--- a/tool/sync_default_gems.rb
+++ b/tool/sync_default_gems.rb
@@ -266,7 +266,7 @@ end
def sync_lib(repo)
unless File.directory?("../#{repo}")
- abort %[Expected '../#{repo}' (#{File.expand_path("../#{repo}")}) to be a directory, but it wasn't.]
+ abort %[Expected '../#{repo}' \(#{File.expand_path("../#{repo}")}\) to be a directory, but it wasn't.]
end
rm_rf(["lib/#{repo}.rb", "lib/#{repo}/*", "test/test_#{repo}.rb"])
cp_r(Dir.glob("../#{repo}/lib/*"), "lib")