1
0
Fork 0

🐛 Used path.join() to construct platform-specific path, fixes #21

This commit is contained in:
Joost De Cock 2019-07-09 09:51:07 +02:00
parent a71db884ea
commit e125c7be6f

View file

@ -11,7 +11,9 @@ const pEachSeries = require("p-each-series");
const pkg = require("../package"); const pkg = require("../package");
const templateBlacklist = new Set(["example/public/favicon.ico"]); const templateBlacklist = new Set([
path.join("example", "public", "favicon.ico")
]);
module.exports = async info => { module.exports = async info => {
const { manager, template, name, templatePath, git } = info; const { manager, template, name, templatePath, git } = info;