1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-12 08:05:46 +01:00

Fix escaped path separator in messages on Windows.

This commit is contained in:
Doug Kearns
2009-03-01 02:49:18 +11:00
parent b3a5f279fc
commit f82b03f796
4 changed files with 15 additions and 17 deletions

View File

@@ -1029,11 +1029,11 @@ const liberator = (function () //{{{
return;
}
liberator.echomsg('Searching for "plugin/**/*.{js,vimp}" in '
+ [dir.path.replace(/.plugin$/, "") for each (dir in dirs)].join(",").quote(), 2);
liberator.echomsg('Searching for "plugin/**/*.{js,vimp}" in "'
+ [dir.path.replace(/.plugin$/, "") for each (dir in dirs)].join(",") + '"', 2);
dirs.forEach(function (dir) {
liberator.echomsg("Searching for " + (dir.path + "/**/*.{js,vimp}").quote(), 3);
liberator.echomsg("Searching for \"" + (dir.path + "/**/*.{js,vimp}") + "\"", 3);
sourceDirectory(dir);
});
},