🐛 Used path.join() to construct platform-specific path, fixes #21
This commit is contained in:
parent
a71db884ea
commit
e125c7be6f
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue