Fix some path math on Windows

pull/8166/head
J. Ryan Stinnett 2019-01-18 15:17:14 -06:00
parent d71e84b790
commit 7418815637
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ module.exports = {
* @return {string} The returned paths will look like `img/warning.1234567.svg`.
*/
function getImgOutputPath(url, resourcePath) {
const prefix = /^.*\/res\//;
const prefix = /^.*[/\\]res[/\\]/;
const outputDir = path.dirname(resourcePath).replace(prefix, "");
return path.join(outputDir, path.basename(url));
}